1 // StudentList.java 2 // 3 // Exercise collections, inheritance, error handling 4 // Ethan Bolker, for cs110 exam 2, Spring 2004 5 6 import java.util.*; 7 8 public class StudentList extends WISEList 9 { 10 public String getHeader( ) 11 { 12 return "List of students"; 13 } 14 }