jxl.biff.formula
class: Plus [javadoc |
source]
java.lang.Object
jxl.biff.formula.ParseItem
jxl.biff.formula.Operator
jxl.biff.formula.StringOperator
jxl.biff.formula.Plus
Ambiguously defined plus operator, used as a place holder when parsing
string formulas. At this stage it could be either
a unary or binary operator - the string parser will deduce which and
create the appropriate type
| Methods from jxl.biff.formula.StringOperator: |
|---|
|
adjustRelativeCellReferences, columnInserted, columnRemoved, getBinaryOperator, getBytes, getOperands, getPrecedence, getString, getUnaryOperator, rowInserted, rowRemoved |
| Methods from jxl.biff.formula.ParseItem: |
|---|
|
adjustRelativeCellReferences, columnInserted, columnRemoved, getBytes, getString, handleImportedCellReferences, isValid, isVolatile, rowInserted, rowRemoved, setAlternateCode, setInvalid, setParent, setVolatile, useAlternateCode |
| Method from jxl.biff.formula.Plus Detail: |
Operator getBinaryOperator() {
return new Add();
}
Abstract method which gets the binary version of this operator |
Operator getUnaryOperator() {
return new UnaryPlus();
}
Abstract method which gets the unary version of 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 |