Uses of Interface
edu.rice.comp211.laundry.io.IOProcess

Packages that use IOProcess
edu.rice.comp211.laundry.io   
edu.rice.comp211.laundry.student   
edu.rice.comp211.laundry.ui   
 

Uses of IOProcess in edu.rice.comp211.laundry.io
 

Classes in edu.rice.comp211.laundry.io that implement IOProcess
 class TerminalIO
          Terminal implementation of the IOProcess interface.
 

Uses of IOProcess in edu.rice.comp211.laundry.student
 

Methods in edu.rice.comp211.laundry.student with parameters of type IOProcess
 void Student.execute(Command cmd, IOProcess io)
          Executes a single command cmd, updating the state of student and generating specified PrintStream output to System.out.
 void Student.simulate(IOProcess io, boolean debug)
          Run a simulation (a series of commands) on the student
 

Uses of IOProcess in edu.rice.comp211.laundry.ui
 

Fields in edu.rice.comp211.laundry.ui declared as IOProcess
private  IOProcess LaundryController.ioProcess
           
 

Fields in edu.rice.comp211.laundry.ui with type parameters of type IOProcess
private  java.util.Map<java.lang.String,IOProcess> StudentModel.ioProcessMap
           
 

Methods in edu.rice.comp211.laundry.ui with parameters of type IOProcess
protected  void StudentModel.addStudent(Student pStudent, IOProcess pIOProcess)