16 lines
315 B
Java
16 lines
315 B
Java
package jxl.biff.formula;
|
|
|
|
class MissingArg extends Operand implements ParsedThing {
|
|
public int read(byte[] data, int pos) {
|
|
return 0;
|
|
}
|
|
|
|
byte[] getBytes() {
|
|
byte[] data = new byte[1];
|
|
data[0] = Token.MISSING_ARG.getCode();
|
|
return data;
|
|
}
|
|
|
|
public void getString(StringBuffer buf) {}
|
|
}
|