jxl.biff.formula
class: MissingArg [javadoc |
source]
java.lang.Object
jxl.biff.formula.ParseItem
jxl.biff.formula.Operand
jxl.biff.formula.MissingArg
All Implemented Interfaces:
ParsedThing
Represents a missing argument in an argument list
| 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.MissingArg Detail: |
byte[] getBytes() {
byte[] data = new byte[1];
data[0] = Token.MISSING_ARG.getCode();
return data;
}
Gets the token representation of this item in RPN |
public void getString(StringBuffer buf) {
}
Abstract method implementation to get the string equivalent of this
token |
void handleImportedCellReferences() {
}
If this formula was on an imported sheet, check that
cell references to another sheet are warned appropriately
Does nothing |
public int read(byte[] data,
int pos) {
return 0;
}
Reads the ptg data from the array starting at the specified position.
A missing argument contains no associated data |