first commit
This commit is contained in:
15
hrmsEjb/jxl/biff/formula/Power.java
Normal file
15
hrmsEjb/jxl/biff/formula/Power.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package jxl.biff.formula;
|
||||
|
||||
class Power extends BinaryOperator implements ParsedThing {
|
||||
public String getSymbol() {
|
||||
return "^";
|
||||
}
|
||||
|
||||
Token getToken() {
|
||||
return Token.POWER;
|
||||
}
|
||||
|
||||
int getPrecedence() {
|
||||
return 1;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user