1: // @author Frank M. Carrano, Timothy M. Henry
2: // @version 5.0
3: private class Record
4: {
5: private int first, last;
6:
7: private Record(int firstIndex, int lastIndex)
8: {
9: first = firstIndex;
10: last = lastIndex;
11: } // end constructor
12: } // end Record