Uses of Class
com.togethersoft.openapi.sci.SciStatement

Packages that use SciStatement
com.togethersoft.openapi.sci 
com.togethersoft.openapi.sci.enum 
com.togethersoft.openapi.sci.visitor 

Uses of SciStatement in com.togethersoft.openapi.sci
 

Subinterfaces of SciStatement in com.togethersoft.openapi.sci
interface SciCaseStatement
           .0
interface SciCompoundStatement
           Represents statements with block: COMPOUND, TRY_BLOCK, FINALLY_BLOCK.
interface SciDeclarationStatement
          
interface SciExpressionStatement
          
interface SciIfStatement
          
interface SciLoopStatement
          
interface SciReturnStatement
          
interface SciThrowStatement
          
interface SciTryStatement
           Represents statement of SciStatementKind.TRY kind.
 

Methods in com.togethersoft.openapi.sci that return SciStatement
SciStatementSciGenericFactory.newStatement(String text, String formatStyle)
          
SciStatementSciGenericFactory.newStatement(String text)
           Creates a new SciStatement basing on the specified string.
SciStatementSciLoopStatement.getInitialization()
          
SciStatementSciLoopStatement.getIteration()
          
SciStatementSciTryStatement.getFinallyBlock()
          
SciStatementSciTryStatement.getTryBlock()
          
 

Uses of SciStatement in com.togethersoft.openapi.sci.enum
 

Methods in com.togethersoft.openapi.sci.enum that return SciStatement
SciStatementSciStatementEnumeration.nextSciStatement()
          
 

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

Methods in com.togethersoft.openapi.sci.visitor with parameters of type SciStatement
ObjectSciStatementVisitor.visitStatement(SciStatement sciStatement)
           Performs an action upon SciStatement.
ObjectSciStatementVisitorAdapter.visitStatement(SciStatement sciStatement)