edu.rice.comp211.laundry.command
Class Receive

java.lang.Object
  extended by edu.rice.comp211.laundry.command.Command
      extended by edu.rice.comp211.laundry.command.Receive

public class Receive
extends Command

Variant class in Command union. Represents the receiving of the new given garment.


Field Summary
 Garment garment
           
 
Constructor Summary
Receive(Garment g)
           
 
Method Summary
<R> R
accept(CommandVisitor<R> c)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

garment

public final Garment garment
Constructor Detail

Receive

public Receive(Garment g)
Method Detail

accept

public <R> R accept(CommandVisitor<R> c)
Specified by:
accept in class Command

toString

public String toString()
Overrides:
toString in class Object