1 // ProfessorList.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 ProfessorList extends WISEList 10 { 11 public ProfessorList( String name ) 12 { 13 super(name); 14 } 15 16 public ProfessorList( String name, String professorFileName ) 17 throws WISEException 18 { 19 super( name, professorFileName ); 20 } 21 22 public WISEObject parseLine( StringTokenizer st ) 23 { 24 return new Professor( st ); 25 } 26 27 public String getHeader( ) 28 { 29 return "# *** CS110 WISE ***\n# List of professors\n" + 30 "#\n# name teaching load"; 31 } 32 }