1 // CourseList.java 2 // 3 // For final project, cs110. 4 // Based on example in exam2 5 // Ethan Bolker Spring 2004 6 7 import java.util.*; 8 9 public class CourseList extends WISEList 10 { 11 public CourseList( String name ) 12 { 13 super(name); 14 } 15 16 public CourseList( String name, String courseFileName ) 17 throws WISEException 18 { 19 super( name, courseFileName ); 20 } 21 22 public WISEObject parseLine( StringTokenizer st ) 23 throws WISEException 24 { 25 return new Course( st ); 26 } 27 28 public String getHeader( ) 29 { 30 return "# *** CS110 WISE ***\n# List of courses\n" + 31 "#\n# name time capacity"; 32 } 33 }