| documentIterator.dispose();
}
public void test() throws IOException {
IndexIterator i0 = new IntArrayIndexIterator( new int[] { 0, 1, 2 },
new int[][] {
{ 0, 3 },
{ 0 },
{ 0 },
} );
IndexIterator i1 = new IntArrayIndexIterator( new int[] { 0, 2 },
new int[][] {
{ 1 },
{ 1 },
} );
IndexIterator i2 = new IntArrayIndexIterator( new int[] { 0, 1, 3 },
new int[][] {
{ 2 },
{ 2 },
{ 0 },
} );
|