first commit
This commit is contained in:
9
hrmsEjb/jxl/biff/formula/NumberValue.java
Normal file
9
hrmsEjb/jxl/biff/formula/NumberValue.java
Normal file
@@ -0,0 +1,9 @@
|
||||
package jxl.biff.formula;
|
||||
|
||||
abstract class NumberValue extends Operand implements ParsedThing {
|
||||
public abstract double getValue();
|
||||
|
||||
public void getString(StringBuffer buf) {
|
||||
buf.append(Double.toString(getValue()));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user