Class BOFRecordAggregate
- java.lang.Object
-
- org.apache.poi.hssf.record.RecordBase
-
- org.apache.poi.hssf.record.aggregates.RecordAggregate
-
- org.apache.poi.hssf.record.aggregates.BOFRecordAggregate
-
public class BOFRecordAggregate extends RecordAggregate
Aggregation of bof- Author:
- dennischen@zkoss.org
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.poi.hssf.record.aggregates.RecordAggregate
RecordAggregate.PositionTrackingVisitor, RecordAggregate.RecordVisitor
-
-
Constructor Summary
Constructors Constructor Description BOFRecordAggregate(BOFRecord bofRecord, EOFRecord eofRecord, List<RecordBase> innerRecords)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<RecordBase>
getInnerRecords()
void
visitContainedRecords(RecordAggregate.RecordVisitor rv)
Visit each of the atomic BIFF records contained in this RecordAggregate in the order that they should be written to file.-
Methods inherited from class org.apache.poi.hssf.record.aggregates.RecordAggregate
getRecordSize, serialize
-
-
-
-
Constructor Detail
-
BOFRecordAggregate
public BOFRecordAggregate(BOFRecord bofRecord, EOFRecord eofRecord, List<RecordBase> innerRecords)
-
-
Method Detail
-
getInnerRecords
public List<RecordBase> getInnerRecords()
-
visitContainedRecords
public void visitContainedRecords(RecordAggregate.RecordVisitor rv)
Description copied from class:RecordAggregate
Visit each of the atomic BIFF records contained in this RecordAggregate in the order that they should be written to file. Implementors may or may not return the actualRecord
s being used to manage POI's internal implementation. Callers should not assume either way, and therefore only attempt to modify thoseRecord
s after cloning- Specified by:
visitContainedRecords
in classRecordAggregate
- Parameters:
rv
- The visitor to use for callbacks while walking this object
-
-