jxl.biff.formula
Class Plus

java.lang.Object
  |
  +--jxl.biff.formula.ParseItem
        |
        +--jxl.biff.formula.Operator
              |
              +--jxl.biff.formula.StringOperator
                    |
                    +--jxl.biff.formula.Plus

class Plus
extends StringOperator

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


Fields inherited from class jxl.biff.formula.Operator
operands
 
Fields inherited from class jxl.biff.formula.ParseItem
parent
 
Constructor Summary
Plus()
          Constructor
 
Method Summary
(package private)  Operator getBinaryOperator()
          Abstract method which gets the binary version of this operator
(package private)  Operator getUnaryOperator()
          Abstract method which gets the unary version of this operator
 
Methods inherited from class jxl.biff.formula.StringOperator
getBytes, getOperands, getPrecedence, getString
 
Methods inherited from class jxl.biff.formula.Operator
add, getOperands
 
Methods inherited from class jxl.biff.formula.ParseItem
setParent
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

Plus

public Plus()
Constructor
Method Detail

getBinaryOperator

Operator getBinaryOperator()
Abstract method which gets the binary version of this operator
Overrides:
getBinaryOperator in class StringOperator

getUnaryOperator

Operator getUnaryOperator()
Abstract method which gets the unary version of this operator
Overrides:
getUnaryOperator in class StringOperator