Package jadex.bdiv3.tutorial.d6
Class TranslationBDI
- java.lang.Object
-
- jadex.bdiv3.tutorial.d6.TranslationBDI
-
public class TranslationBDI extends java.lang.Object
The translation agent E3. Uses a maintain goal to limit the number of entries in its database.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
TranslationBDI.MaintainStorageGoal
Maintain goal that ensures that only maxstorage number of entries are in the table wordtable.
-
Field Summary
Fields Modifier and Type Field Description protected IBDIAgentFeature
bdiFeature
The BDI feature.protected IExecutionFeature
execFeature
The execution feature.protected java.util.Map<java.lang.String,java.lang.String>
wordtable
The map of words.
-
Constructor Summary
Constructors Constructor Description TranslationBDI()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
body()
The agent body.protected void
removeEntry()
Removal plan that remove one entry.
-
-
-
Field Detail
-
bdiFeature
protected IBDIAgentFeature bdiFeature
The BDI feature.
-
execFeature
protected IExecutionFeature execFeature
The execution feature.
-
wordtable
protected java.util.Map<java.lang.String,java.lang.String> wordtable
The map of words.
-
-