Uses of Class
org.apache.poi.hssf.record.RowRecord

Packages that use RowRecord
org.apache.poi.hssf.model Provides low level API structures for reading, writing, modifying XLS files. 
org.apache.poi.hssf.record.aggregates record aggregates are not real "records" but collections of records that act as a single record. 
 

Uses of RowRecord in org.apache.poi.hssf.model
 

Methods in org.apache.poi.hssf.model that return RowRecord
 RowRecord InternalSheet.getNextRow()
          get the NEXT RowRecord (from LOC).
 RowRecord InternalSheet.getRow(int rownum)
          get the NEXT (from LOC) RowRecord where rownumber matches the given rownum.
 

Methods in org.apache.poi.hssf.model with parameters of type RowRecord
 void InternalSheet.addRow(RowRecord row)
          Adds a row record to the sheet
 void InternalSheet.removeRow(RowRecord row)
          Removes a row record This method is not loc sensitive, it resets loc to = dimsloc so no worries.
 

Uses of RowRecord in org.apache.poi.hssf.record.aggregates
 

Methods in org.apache.poi.hssf.record.aggregates that return RowRecord
static RowRecord RowRecordsAggregate.createRow(int rowNumber)
          Create a row record.
 RowRecord RowRecordsAggregate.getRow(int rowIndex)
           
 

Methods in org.apache.poi.hssf.record.aggregates with parameters of type RowRecord
 void RowRecordsAggregate.insertRow(RowRecord row)
           
 void RowRecordsAggregate.removeRow(RowRecord row)