RECODER 0.92

recoder.java
Interface ExpressionContainer

All Superinterfaces:
ModelElement, NonTerminalProgramElement, ProgramElement, SourceElement
All Known Subinterfaces:
ConstructorReference, MemberReference
All Known Implementing Classes:
AnnotationElementValuePair, AnnotationPropertyDeclaration, AnnotationPropertyReference, ArrayInitializer, ArrayReference, Assert, Assignment, BinaryAnd, BinaryAndAssignment, BinaryNot, BinaryOr, BinaryOrAssignment, BinaryXOr, BinaryXOrAssignment, Case, ComparativeOperator, Conditional, CopyAssignment, Divide, DivideAssignment, Do, ElementValueArrayInitializer, EnhancedFor, EnumConstantSpecification, EnumConstructorReference, Equals, ExpressionJumpStatement, FieldReference, FieldSpecification, For, GreaterOrEquals, GreaterThan, If, Instanceof, LessOrEquals, LessThan, LogicalAnd, LogicalNot, LogicalOr, LoopStatement, MethodReference, Minus, MinusAssignment, Modulo, ModuloAssignment, Negative, New, NewArray, NotEquals, Operator, ParenthesizedExpression, Plus, PlusAssignment, Positive, PostDecrement, PostIncrement, PreDecrement, PreIncrement, Return, ShiftLeft, ShiftLeftAssignment, ShiftRight, ShiftRightAssignment, SpecialConstructorReference, SuperConstructorReference, SuperReference, Switch, SynchronizedBlock, ThisConstructorReference, Throw, Times, TimesAssignment, TypeCast, TypeOperator, TypeReference, UncollatedReferenceQualifier, UnsignedShiftRight, UnsignedShiftRightAssignment, VariableSpecification, While

public interface ExpressionContainer
extends NonTerminalProgramElement

Expression container.

Author:
AL, AutoDoc

Nested Class Summary
 
Nested classes/interfaces inherited from interface recoder.java.ProgramElement
ProgramElement.TreeStructure
 
Nested classes/interfaces inherited from interface recoder.java.SourceElement
SourceElement.Position
 
Field Summary
 
Fields inherited from interface recoder.java.ProgramElement
STRUCTURAL_EQUALITY, STRUCTURAL_HASH_CODE
 
Method Summary
 Expression getExpressionAt(int index)
           
 int getExpressionCount()
          Get the number of expressions in this container.
 
Methods inherited from interface recoder.java.NonTerminalProgramElement
getChildAt, getChildCount, getChildPositionCode, getIndexOfChild, getRoleOfChild, makeAllParentRolesValid, makeParentRoleValid, replaceChild, validateAll
 
Methods inherited from interface recoder.java.ProgramElement
getASTParent, getComments, getID, setComments
 
Methods inherited from interface recoder.java.SourceElement
accept, deepClone, getEndPosition, getFactory, getFirstElement, getLastElement, getRelativePosition, getStartPosition, setEndPosition, setRelativePosition, setStartPosition, toSource
 
Methods inherited from interface recoder.ModelElement
validate
 

Method Detail

getExpressionCount

int getExpressionCount()
Get the number of expressions in this container.

Returns:
the number of expressions.

getExpressionAt

Expression getExpressionAt(int index)

RECODER 0.92