jxl.biff.formula
Class Minus

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

class Minus
extends StringOperator

Ambiguously defined minus 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
Minus()
          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

Minus

public Minus()
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