FileDocCategorySizeDatePackage
MissingCellDummyRecord.javaAPI DocApache Poi 3.0.11677Thu May 31 18:44:38 BST 2007org.apache.poi.hssf.eventusermodel.dummyrecord

MissingCellDummyRecord

public class MissingCellDummyRecord extends Record
A dummy record for when we're missing a cell in a row, but still want to trigger something

Fields Summary
private int
row
private int
column
Constructors Summary
public MissingCellDummyRecord(int row, int column)

		this.row = row;
		this.column = column;
	
Methods Summary
protected voidfillFields(org.apache.poi.hssf.record.RecordInputStream in)

	
public intgetColumn()

 return column; 
public intgetRow()

 return row; 
public shortgetSid()

		return -1;
	
public intserialize(int offset, byte[] data)

		return -1;
	
protected voidvalidateSid(short id)