View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   
6   package net.sf.zel.nr;
7   
8   /**
9    *
10   * @author zoly
11   */
12  public abstract class OperableNumber extends ExtendedNumber
13         implements Comparable, Operable<OperableNumber>
14  {
15  
16  //    public abstract OperableInteger toOperableInteger();
17  //
18  //    public abstract OperableShort toOperableShort();
19  //
20  //    public abstract OperableLong toOperableLong();
21  //
22  //    public abstract OperableBigInteger toOperableBigInteger();
23  
24  
25      
26  }