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