KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > lsmp > djep > groupJep > interfaces > HasDivI


1 /* @author rich
2  * Created on 05-Mar-2004
3  *
4  * This code is covered by a Creative Commons
5  * Attribution, Non Commercial, Share Alike license
6  * <a HREF="http://creativecommons.org/licenses/by-nc-sa/1.0">License</a>
7  */

8 package org.lsmp.djep.groupJep.interfaces;
9
10 /**
11  * An IntergralDomainI which also has a notion of division,
12  * which is not necessarily closed i.e. the integers.
13  *
14  * @author Rich Morris
15  * Created on 05-Mar-2004
16  */

17 public interface HasDivI {
18     /** get division of two numbers. i.e. a * ( b^-1).
19      * Strictly speeking */

20     public Number JavaDoc div(Number JavaDoc a,Number JavaDoc b);
21 }
22
Popular Tags