Package org.apache.poi.hsmf.datatypes
Interface ChunkGroup
- All Known Subinterfaces:
ChunkGroupWithProperties
- All Known Implementing Classes:
AttachmentChunks
,Chunks
,NameIdChunks
,RecipientChunks
public interface ChunkGroup
A group of chunks, that are at the same point in the file structure.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Called by the parser when all chunks have been found.Chunk[]
Returns the chunks that make up the group.void
Called by the parser whenever a chunk is found.
-
Method Details
-
getChunks
Chunk[] getChunks()Returns the chunks that make up the group. Should certainly contain all the interesting Chunks, but needn't always contain all of the Chunks. -
record
Called by the parser whenever a chunk is found. -
chunksComplete
void chunksComplete()Called by the parser when all chunks have been found.
-