edu.rice.comp211.laundry.command
Interface CommandVisitor<R>

Type Parameters:
R - the return type of the visitor
All Known Implementing Classes:
DoCommandVisitor

public interface CommandVisitor<R>

Visitor interface for Command objects.


Method Summary
 R forChange(Change cCmd)
           
 R forFold(Fold fCmd)
           
 R forLaunder(Launder lCmd)
           
 R forLose(Lose lCmd)
           
 R forOutfit(Outfit oCmd)
           
 R forReceive(Receive rCmd)
           
 

Method Detail

forReceive

R forReceive(Receive rCmd)

forLose

R forLose(Lose lCmd)

forChange

R forChange(Change cCmd)

forLaunder

R forLaunder(Launder lCmd)

forFold

R forFold(Fold fCmd)

forOutfit

R forOutfit(Outfit oCmd)