Package | Description |
---|---|
jason.asSemantics | |
jason.asSyntax | |
jason.bb | |
jason.environment | |
jason.infra.centralised | |
jason.infra.jade | |
jason.mas2j |
Modifier and Type | Method and Description |
---|---|
Structure |
ActionExec.getActionTerm() |
Modifier and Type | Class and Description |
---|---|
class |
ArithExpr
Represents and solve arithmetic expressions like "10 + 30".
|
class |
ArithFunctionTerm
Represents an arithmetic function, like math.max(arg1,arg2) -- a functor (math.max) and two arguments.
|
class |
BinaryStructure
Represents a binary/unary logical/relational operator.
|
class |
BodyLiteral
Deprecated.
use PlanBodyImpl instead.
|
class |
CyclicTerm
A term with recursion (cyclic), created by code like X = f(X).
|
class |
InternalActionLiteral
A particular type of literal used to represent internal actions (which has a "." in the functor).
|
class |
ListTermImpl
Represents a list node as in prolog .(t1,.(t2,.(t3,.))).
|
class |
LiteralImpl
A Literal extends a Pred with strong negation (~).
|
class |
LogExpr
Represents a logical formula with some logical operator ("&", "|", "not").
|
class |
Plan
Represents an AgentSpack plan
(it extends structure to be used as a term)
|
class |
PlanBodyImpl
Represents a plan body item (achieve, test, action, ...) and its successors.
|
class |
Pred
A Pred extends a Structure with annotations, e.g.: a(1)[an1,an2].
|
class |
RelExpr
Represents a relational expression like 10 > 20.
|
class |
Rule
A rule is a Literal (head) with a body, as in "a :- b & c".
|
class |
Trigger
Represents an AgentSpeak trigger (like +!g, +p, ...).
|
class |
UnnamedVar
Represents an unnamed variable '_'.
|
class |
VarTerm
Represents a variable Term: like X (starts with upper case).
|
Modifier and Type | Method and Description |
---|---|
static Structure |
ASSyntax.createStructure(java.lang.String functor,
Term... terms)
Creates a new structure (compound) term, the first argument is the functor (a string),
and the n remainder arguments are terms.
|
static Structure |
Structure.parse(java.lang.String sTerm) |
static Structure |
ASSyntax.parseStructure(java.lang.String sStructure)
creates a new structure (a kind of term) by parsing a string
|
Constructor and Description |
---|
InternalActionLiteral(Structure p,
Agent ag) |
Modifier and Type | Method and Description |
---|---|
static Structure |
JDBCPersistentBB.timestamp2structure(java.sql.Timestamp timestamp)
translates a SQL timestamp into a structure like "timestamp(Y,M,D,H,M,S)"
|
Modifier and Type | Method and Description |
---|---|
protected java.lang.String |
JDBCPersistentBB.getCreateTable(java.lang.String table,
int arity,
Structure columns)
returns the SQL command to create a new table
|
protected java.lang.String |
AgentJDBCPersistentBB.getCreateTable(java.lang.String table,
int arity,
Structure columns) |
Modifier and Type | Method and Description |
---|---|
Structure |
TimeSteppedEnvironment.getActionInSchedule(java.lang.String agName) |
Modifier and Type | Method and Description |
---|---|
void |
EnvironmentInfraTier.actionExecuted(java.lang.String agName,
Structure actTerm,
boolean success,
java.lang.Object infraData)
called by the user implementation of the environment when the action was executed
|
boolean |
Environment.executeAction(java.lang.String agName,
Structure act)
Executes an action on the environment.
|
protected int |
TimeSteppedEnvironment.requiredStepsForAction(java.lang.String agName,
Structure action) |
void |
TimeSteppedEnvironment.scheduleAction(java.lang.String agName,
Structure action,
java.lang.Object infraData) |
void |
Environment.scheduleAction(java.lang.String agName,
Structure action,
java.lang.Object infraData)
Called by the agent infrastructure to schedule an action to be
executed on the environment
|
Modifier and Type | Method and Description |
---|---|
void |
CentralisedEnvironment.actionExecuted(java.lang.String agName,
Structure actTerm,
boolean success,
java.lang.Object infraData) |
Modifier and Type | Method and Description |
---|---|
void |
JadeEnvironment.actionExecuted(java.lang.String agName,
Structure actTerm,
boolean success,
java.lang.Object infraData) |
Constructor and Description |
---|
ClassParameters(Structure s) |