1: private class Record 2: { 3: private int first, last; 4: 5: private Record(int firstIndex, int lastIndex) 6: { 7: first = firstIndex; 8: last = lastIndex; 9: } // end constructor 10: } // end Record 11: // Version 4.0