1 // TypeCommand.java 2 // 3 // For final project, cs110. 4 // Based on Juno shell command. 5 // Ethan Bolker Spring 2004 6 7 import java.util.*; 8 9 /** 10 * The WISE command to type a requested list. 11 */ 12 public class TypeCommand extends OutputCommand 13 { 14 private final static String USAGE = 15 "usage: type students|courses|professors [name]"; 16 17 private Terminal t; 18 19 public void output( String string ) 20 { 21 t.println( string ); 22 } 23 24 /** 25 * Type a requested list. 26 * 27 * @param args the remainder of the command line. 28 * @param wise the current WISE. 29 * 30 * @exception WISEException for reporting errors 31 */ 32 public void doIt( StringTokenizer args, WISE wise ) 33 throws WISEException 34 { 35 t = wise.getTerminal(); 36 super.doIt( args, wise ); 37 } 38 }