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

LastCellOfRowDummyRecord

public class LastCellOfRowDummyRecord extends Record
A dummy record to indicate that we've now had the last cell record for this row.

Fields Summary
private int
row
private int
lastColumnNumber
Constructors Summary
public LastCellOfRowDummyRecord(int row, int lastColumnNumber)

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

	
public intgetLastColumnNumber()
Returns the (0 based) number of the last column seen for this row. You should have already been called with that record. This is -1 in the case of there being no columns for the row.

 return lastColumnNumber; 
public intgetRow()
Returns the (0 based) number of the row we are currently working on.

 return row; 
public shortgetSid()

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

		return -1;
	
protected voidvalidateSid(short id)