private class Record
{
   private int first, last;
   
   private Record(int firstIndex, int lastIndex)
   {
      first = firstIndex;
      last = lastIndex;
   } // end constructor
} // end Record
// Version 4.0
