1: // @author Frank M. Carrano, Timothy M. Henry 2: // @version 5.0 4: /** Displays this object after skipping numberOfLines lines. */ 5: public void displayAt(int numberOfLines) 6: { 7: for (int count = 0; count < numberOfLines; count++) 8: System.out.println(); 9: display(); 10: } // end displayAt