Uses of Interface
extvisitor.IExtVisitorCmd

Packages that use IExtVisitorCmd
datapacket   
extvisitor   
status   
 

Uses of IExtVisitorCmd in datapacket
 

Classes in datapacket that implement IExtVisitorCmd
 class ADataPacketAlgoCmd<R,D,P>
          A DataPacketAlgo command that is designed to work on a DataPacket host.
 

Uses of IExtVisitorCmd in extvisitor
 

Fields in extvisitor declared as IExtVisitorCmd
private  IExtVisitorCmd<R,I,P,H> AExtVisitor.defaultCmd
          The default command to use if no command is associated with a case index value.
 

Fields in extvisitor with type parameters of type IExtVisitorCmd
private  java.util.Map<I,IExtVisitorCmd<R,I,P,H>> AExtVisitor.cmds
          The dictionary used to store the commands
 

Methods in extvisitor that return IExtVisitorCmd
 IExtVisitorCmd<R,I,P,H> AExtVisitor.getCmd(I idx)
          Retrieve the command associated with given index value.
 IExtVisitorCmd<R,I,P,H> AExtVisitor.getDefaultCmd()
          Retrieve the current default command
 

Methods in extvisitor with parameters of type IExtVisitorCmd
 void AExtVisitor.setCmd(I idx, IExtVisitorCmd<R,I,P,H> cmd)
          Associates the given index value with the given command
 void AExtVisitor.setDefaultCmd(IExtVisitorCmd<R,I,P,H> defaultCmd)
          Set the default command to a new value.
 

Constructors in extvisitor with parameters of type IExtVisitorCmd
AExtVisitor(IExtVisitorCmd<R,I,P,H> defaultCmd)
          Constructor that takes a default command to use.
 

Uses of IExtVisitorCmd in status
 

Classes in status that implement IExtVisitorCmd
 class AStatusAlgoCmd<R,S extends AStatus,P>
          Convenience class to simplify the code and to tighten the type checking on status processing code.