|
15 | 15 | public class DynAttributeNames { |
16 | 16 | /** |
17 | 17 | * Name of a dynamic attribute, which contains the current location of the |
18 | | - * agent. |
| 18 | + * agent. Expected value type: String. |
19 | 19 | */ |
20 | 20 | public static final String AGENT_LOCATION = "location"; |
21 | 21 | /** |
22 | 22 | * Name of a dynamic attribute, which maintains the total traveling distance |
23 | | - * of the agent since birth. Should be of type Integer. |
| 23 | + * of the agent since birth. Expected value type: Integer. |
24 | 24 | */ |
25 | 25 | public static final String AGENT_TRAVEL_DISTANCE = "travelDistance"; |
26 | 26 | /** |
27 | 27 | * Name of a dynamic attribute, which indicates the current status of the |
28 | | - * agent, such as traveling, completed or aborted. |
| 28 | + * agent, such as traveling, completed or aborted. Expected value type: |
| 29 | + * String. |
29 | 30 | */ |
30 | 31 | public static final String AGENT_STATUS = "status"; |
31 | 32 |
|
32 | 33 | /** |
33 | | - * Name of a dynamic attribute, which tells the agent where it is. |
| 34 | + * Name of a dynamic attribute, which tells the agent where it is. Expected |
| 35 | + * value type: String. |
34 | 36 | */ |
35 | 37 | public static final String PERCEPT_IN = "In"; |
36 | 38 | /** |
37 | 39 | * Name of a dynamic attribute, which tells the agent which actions are |
38 | | - * possible at the current location of the agent. |
| 40 | + * possible at the current location of the agent. Expected value type: List |
| 41 | + * of alternating Strings and Integers. |
39 | 42 | */ |
40 | | - public static final String PERCEPT_POSSIBLE_ACTIONS = "Signpost"; |
| 43 | + public static final String PERCEPT_POSSIBLE_ACTIONS = "PossibleActions"; |
41 | 44 | /** |
42 | 45 | * Name of a dynamic attribute. It provides access to informations which are |
43 | 46 | * available at the current location of the agent. |
|
0 commit comments