Uses of Class
com.togethersoft.openapi.sci.enum.SciStatementEnumeration

Packages that use SciStatementEnumeration
com.togethersoft.openapi.sci 
com.togethersoft.openapi.sci.visitor 

Uses of SciStatementEnumeration in com.togethersoft.openapi.sci
 

Methods in com.togethersoft.openapi.sci that return SciStatementEnumeration
SciStatementEnumerationSciCodeBlock.statements()
          Returns an enumeration of all statements taking place in this block of a source code.
SciStatementEnumerationSciTryStatement.catchBlocks()
          
 

Uses of SciStatementEnumeration in com.togethersoft.openapi.sci.visitor
 

Methods in com.togethersoft.openapi.sci.visitor with parameters of type SciStatementEnumeration
static voidSciVisitorUtil.acceptToAll(SciStatementEnumeration enum, SciStatementVisitor visitor)
          Makes each SciStatement from the specified enumeration accept the specified visitor.
static ObjectSciVisitorUtil.acceptUntilStop(SciStatementEnumeration enum, SciStatementVisitor visitor)
          Makes each SciStatement from the specified enumeration accept the specified visitor until
the result of accepting is equal to the static variable STOP.