first commit
This commit is contained in:
15
hrmsEjb/jxl/biff/formula/MissingArg.java
Normal file
15
hrmsEjb/jxl/biff/formula/MissingArg.java
Normal file
@@ -0,0 +1,15 @@
|
||||
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) {}
|
||||
}
|
Reference in New Issue
Block a user