(int first, FileInfo fi)
| 753 | } |
| 754 | |
| 755 | void getPlot(int first, FileInfo fi) throws IOException { |
| 756 | int len = metaDataCounts[first]; |
| 757 | fi.plot = new byte[len]; |
| 758 | in.readFully(fi.plot, len); |
| 759 | } |
| 760 | |
| 761 | void getOverlay(int first, int last, FileInfo fi) throws IOException { |
| 762 | fi.overlay = new byte[last-first+1][]; |