public final class UpdateTerm extends ExpressionBase
| Constructor and Description |
|---|
UpdateTerm(Expression base1,
Selector[] base2,
Expression value)
construct component update by index selection from base, base2, and base3
|
| Modifier and Type | Method and Description |
|---|---|
AST |
accept(ASTVisitor visitor)
Accept visitor for a visit.
|
Expression |
getBase()
get the base expression
|
int |
getPriority()
get binding level for printing (lower numbers mean greater binding power)
|
Selector[] |
getSelectors()
get the selectors
|
Expression |
getUpdate()
get the update value
|
Expression |
instantiate()
return copy of AST with value references instantiated by the substitutions
set in the corresponding declaration identifiers
|
void |
printCore(java.io.PrintWriter out)
Prints text representation on out (without new line termination).
|
printPriorityprint, printParens, toStringequals, getClass, hashCode, notify, notifyAll, wait, wait, waitprint, printParens, toStringpublic UpdateTerm(Expression base1, Selector[] base2, Expression value)
base1 - the compound objectbase2 - the sequence of selectorsvalue - the update valuepublic int getPriority()
getPriority in interface ExpressiongetPriority in class ExpressionBasepublic Expression getBase()
public Selector[] getSelectors()
public Expression getUpdate()
public Expression instantiate()
public void printCore(java.io.PrintWriter out)
public AST accept(ASTVisitor visitor)
visitor - the visitor who is accepted by this node.