jxl.biff.formula
class: CellReferenceError [javadoc |
source]
java.lang.Object
jxl.biff.formula.ParseItem
jxl.biff.formula.Operand
jxl.biff.formula.CellReferenceError
All Implemented Interfaces:
ParsedThing
An cell reference error which occurs in a formula
| 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.CellReferenceError Detail: |
byte[] getBytes() {
byte[] data = new byte[5];
data[0] = Token.REFERR.getCode();
// bytes 1-5 are unused
return data;
}
Gets the token representation of this item in RPN |
public void getString(StringBuffer buf) {
buf.append(FormulaErrorCode.REF.getDescription());
}
Gets the cell reference as a string for this item |
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) {
// the data is unused - just return the four bytes
return 4;
}
Reads the ptg data from the array starting at the specified position |