first commit
This commit is contained in:
16
hrmsEjb/jxl/biff/formula/Name.java
Normal file
16
hrmsEjb/jxl/biff/formula/Name.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package jxl.biff.formula;
|
||||
|
||||
class Name extends Operand implements ParsedThing {
|
||||
public int read(byte[] data, int pos) {
|
||||
return 6;
|
||||
}
|
||||
|
||||
byte[] getBytes() {
|
||||
byte[] data = new byte[6];
|
||||
return data;
|
||||
}
|
||||
|
||||
public void getString(StringBuffer buf) {
|
||||
buf.append("[Name record not implemented]");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user