1 2 17 18 19 package org.apache.poi.poifs.storage; 20 21 import java.io.IOException ; 22 23 29 30 public interface BlockList 31 { 32 33 39 40 public void zap(final int index); 41 42 52 53 public ListManagedBlock remove(final int index) 54 throws IOException ; 55 56 66 67 public ListManagedBlock [] fetchBlocks(final int startBlock) 68 throws IOException ; 69 70 77 78 public void setBAT(final BlockAllocationTableReader bat) 79 throws IOException ; 80 } 82 | Popular Tags |