Package | Description |
---|---|
com.tameif.tame |
Base package.
|
com.tameif.tame.lang |
Contains linguistic abstraction classes.
|
Modifier and Type | Method and Description |
---|---|
protected void |
TAMEOperation.doOperation(TAMERequest request,
TAMEResponse response,
ValueSet blockLocal,
Operation operation)
Performs the operation.
|
void |
TAMEOperation.execute(TAMERequest request,
TAMEResponse response,
ValueSet blockLocal,
Operation operation)
Increments the runaway operation counter and calls the operation.
|
Modifier and Type | Method and Description |
---|---|
static Operation |
Operation.create(TAMEOperation operation)
Creates an operation.
|
static Operation |
Operation.create(TAMEOperation operation,
Block conditionalBlock,
Block successBlock)
Creates an operation with a conditional and success block.
|
static Operation |
Operation.create(TAMEOperation operation,
Block conditionalBlock,
Block successBlock,
Block failureBlock)
Creates an operation with a conditional, success, and failure block.
|
static Operation |
Operation.create(TAMEOperation operation,
Block initializationBlock,
Block conditionalBlock,
Block stepBlock,
Block successBlock)
Creates a operation with an initializer, conditional, step, success, and failure block.
|
static Operation |
Operation.create(TAMEOperation operation,
Value operand0)
Creates an operation with an operand.
|
static Operation |
Operation.create(TAMEOperation operation,
Value operand0,
Value operand1)
Creates an operation with operands.
|
static Operation |
Operation.create(java.io.InputStream in)
Creates this object from an input stream, expecting its byte representation.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<Operation> |
Block.iterator() |
Modifier and Type | Method and Description |
---|---|
void |
Block.add(Operation statement)
Adds a statement to the block.
|
void |
OperationType.execute(TAMERequest request,
TAMEResponse response,
ValueSet blockLocal,
Operation statement)
Calls the operation and increments the operation count.
|