Uses of Class
ai.planning.propositional.ActionType

Packages that use ActionType
ai.planning.propositional   
 

Uses of ActionType in ai.planning.propositional
 

Fields in ai.planning.propositional declared as ActionType
protected  ActionType Action.type
          the ActionType which this Action instantiates
 

Fields in ai.planning.propositional with type parameters of type ActionType
protected  java.util.List<ActionType> Domain.operators
          the ActionTypes that define this Domain
 

Methods in ai.planning.propositional that return ActionType
protected  ActionType ActionType.clone()
           This class does not support cloning and an Exception will be thrown if this method is called.
 ActionType Action.getActionType()
           This function returns the ActionType of this Action.
 ActionType Domain.getOperator(ai.krr.NamedSymbol name)
           This function returns the ActionType with the given name that may be defined in this Domain.
protected static ActionType PplDomainAdaptor.parseActionTypeNB(inf.compilers.LexicalAnalyzer scanner, java.util.Properties props)
           This function reads tokens from the given LexicalAnalyzer and attempts to create an ActionType that corresponds to the parsed tokens.
 

Methods in ai.planning.propositional that return types with arguments of type ActionType
 java.util.List<ActionType> Domain.getOperators()
           This function returns the List of ActionTypes that define this Domain.
 

Methods in ai.planning.propositional with parameters of type ActionType
static boolean ActionType.dependent(ActionType op1, ActionType op2)
           This function tests whether the two given ActionTypes are dependent.
protected static void PplDomainAdaptor.prettyPrintActionType(int indent, ActionType aType, java.io.Writer w, java.util.Properties props)
           This function writes the given ActionType to the given Writer, using the given Properties.
protected static void PplDomainAdaptor.writeActionType(ActionType aType, java.io.Writer w, java.util.Properties props)
           This function writes the given ActionType to the given Writer, using the given Properties.
 

Constructors in ai.planning.propositional with parameters of type ActionType
Action(ActionType type)
           This constructor creates a new Action of the given type.
Domain(ai.krr.NamedSymbol name, ActionType... ops)
           This constructor creates a new Domain that has the given name and is defined by the given ActionTypes.
 

Constructor parameters in ai.planning.propositional with type arguments of type ActionType
Domain(ai.krr.NamedSymbol name, java.util.Collection<ActionType> ops)
           This constructor creates a new Domain that has the given name and is defined by the given ActionTypes.