Uses of Class
br.pucrio.inf.les.bdijade.goal.GoalStatus

Packages that use GoalStatus
br.pucrio.inf.les.bdijade.core   
br.pucrio.inf.les.bdijade.event   
br.pucrio.inf.les.bdijade.goal   
br.pucrio.inf.les.bdijade.reasoning   
 

Uses of GoalStatus in br.pucrio.inf.les.bdijade.core
 

Methods in br.pucrio.inf.les.bdijade.core that return GoalStatus
 GoalStatus Intention.getStatus()
          Returns the current goal status that this capability is committed to achieve.
 

Uses of GoalStatus in br.pucrio.inf.les.bdijade.event
 

Fields in br.pucrio.inf.les.bdijade.event declared as GoalStatus
protected  GoalStatus GoalFinishedEvent.status
           
 

Methods in br.pucrio.inf.les.bdijade.event that return GoalStatus
 GoalStatus GoalFinishedEvent.getStatus()
           
 

Methods in br.pucrio.inf.les.bdijade.event with parameters of type GoalStatus
 void GoalFinishedEvent.setStatus(GoalStatus status)
           
 

Constructors in br.pucrio.inf.les.bdijade.event with parameters of type GoalStatus
GoalFinishedEvent(Goal goal, GoalStatus status)
          Creates a new goal event with a goal and its status.
 

Uses of GoalStatus in br.pucrio.inf.les.bdijade.goal
 

Methods in br.pucrio.inf.les.bdijade.goal that return GoalStatus
static GoalStatus GoalStatus.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GoalStatus[] GoalStatus.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of GoalStatus in br.pucrio.inf.les.bdijade.reasoning
 

Method parameters in br.pucrio.inf.les.bdijade.reasoning with type arguments of type GoalStatus
 java.util.Set<Goal> DeliberationFunction.filter(java.util.Map<Goal,GoalStatus> goals)
          Selects the goals that must be tried to achieve and the ones that will be in the waiting status.
 java.util.Set<Goal> DefaultDeliberationFunction.filter(java.util.Map<Goal,GoalStatus> goals)
           
 java.util.Set<Goal> OptionGenerationFunction.generateGoals(java.util.Map<Goal,GoalStatus> goals)
          The goals parameter is a map of all goals of the agent (that might be intentions) with their corresponding status.
 java.util.Set<Goal> DefaultOptionGenerationFunction.generateGoals(java.util.Map<Goal,GoalStatus> goals)