Source of JI7.5.java


  1: // Version 4.0
  2: /** Displays the object after skipping numberOfLines lines. */
  3: public void displayAt(int numberOfLines)
  4: {
  5:    for (int count = 0; count < numberOfLines; count++)
  6:       System.out.println();
  7:    display();
  8: } // end displayAt