Methods Summary |
---|
public int | countBlocks()Return the number of BigBlock's this instance uses
return _big_block_count;
|
public org.apache.poi.poifs.storage.BlockAllocationTableWriter | getSBAT()Get the SBAT
return _sbat;
|
public int | getSBATBlockCount()Get the number of SBAT blocks
return (_big_block_count + 15) / 16;
|
public void | setStartBlock(int start_block)Set the start block for this instance
_root.setStartBlock(start_block);
|
public void | writeBlocks(java.io.OutputStream stream)Write the storage to an OutputStream
Iterator iter = _small_blocks.iterator();
while (iter.hasNext())
{
(( BlockWritable ) iter.next()).writeBlocks(stream);
}
|