1 16 17 package org.apache.poi.hssf.record.formula; 18 19 import org.apache.poi.hssf.model.Workbook; 20 21 27 public class MissingArgPtg 28 extends Ptg 29 { 30 31 private final static int SIZE = 1; 32 public final static byte sid = 0x16; 33 34 public MissingArgPtg() 35 { 36 } 37 38 public MissingArgPtg(byte [] data, int offset) 39 { 40 } 42 43 44 45 public void writeBytes(byte [] array, int offset) 46 { 47 array[ offset + 0 ] = sid; 48 } 49 50 public int getSize() 51 { 52 return SIZE; 53 } 54 55 56 public String toFormulaString(Workbook book) 57 { 58 return " "; 59 } 60 61 public byte getDefaultOperandClass() {return Ptg.CLASS_VALUE;} 62 63 public Object clone() { 64 return new MissingArgPtg(); 65 } 66 67 } 68 | Popular Tags |