A cell reference in a formula
| Method from jxl.biff.formula.UnaryPlus Detail: |
int getPrecedence() {
return 2;
}
Gets the precedence for this operator. Operator precedents run from
1 to 5, one being the highest, 5 being the lowest |
public String getSymbol() {
return "+";
}
|
Token getToken() {
return Token.UNARY_PLUS;
}
Abstract method which gets the token for this operator |
void handleImportedCellReferences() {
}
If this formula was on an imported sheet, check that
cell references to another sheet are warned appropriately
Does nothing, as operators don't have cell references |