| |
|
| java.util.LinkedList hu.netmind.persistence.parser.Expression
Expression | public class Expression extends LinkedList (Code) | | An expression is basically a List, which contains the terms, operators
and subexpression in order. It can contain these objects (filled by
parser):
- Expression: This indicates a sub-expression.
- String: This is an operator (unary or binary).
- ConstantTerm: Indicates a constant with the given value.
- ReferenceTerm: A reference to a table's attribute.
author: Brautigam Robert version: Revision: $Revision$ |
Expression | public Expression()(Code) | | |
isMarkedBlock | public boolean isMarkedBlock()(Code) | | |
removeLeftTableTerm | public void removeLeftTableTerm(TableTerm leftTerm)(Code) | | |
setLeftTableTerm | public void setLeftTableTerm(TableTerm leftTableTerm)(Code) | | |
setMarkedBlock | public void setMarkedBlock(boolean markedBlock)(Code) | | |
|
|
|