Uses of Interface
edu.rice.comp211.laundry.command.CommandVisitor

Packages that use CommandVisitor
edu.rice.comp211.laundry.command   
edu.rice.comp211.laundry.student   
edu.rice.comp211.laundry.ui   
 

Uses of CommandVisitor in edu.rice.comp211.laundry.command
 

Classes in edu.rice.comp211.laundry.command that implement CommandVisitor
 class DoCommandVisitor
          Processes a command for the stored student reference
 

Methods in edu.rice.comp211.laundry.command with parameters of type CommandVisitor
<R> R
Receive.accept(CommandVisitor<R> c)
           
<R> R
Outfit.accept(CommandVisitor<R> c)
           
<R> R
Lose.accept(CommandVisitor<R> c)
           
<R> R
Launder.accept(CommandVisitor<R> c)
           
<R> R
Fold.accept(CommandVisitor<R> c)
           
abstract
<R> R
Command.accept(CommandVisitor<R> c)
           
<R> R
Change.accept(CommandVisitor<R> c)
           
 

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

Methods in edu.rice.comp211.laundry.student that return CommandVisitor
 CommandVisitor<java.lang.String> Student.getCommandVisitor()
          Factory method for a CommandVisitor<String> that can be used to process Commands for this student
 

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

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