Uses of Interface
com.jscape.util.workflow.Statement

Packages that use Statement
com.jscape.util.workflow Contains workflow implementation classes. 
com.jscape.util.workflow.statements Contains workflow statement classes. 
 

Uses of Statement in com.jscape.util.workflow
 

Classes in com.jscape.util.workflow that implement Statement
 class NullStatement
          "Special case": null statement.
 

Uses of Statement in com.jscape.util.workflow.statements
 

Classes in com.jscape.util.workflow.statements that implement Statement
 class CompoundStatement
          Compound or "block" statement.
 class ConditionalStatement
          Conditional or "if-else" statement.
 class WhileStatement
          Cycle statement.
 

Methods in com.jscape.util.workflow.statements that return Statement
 Statement ConditionalStatement.getElseStatement()
          Returns an alternate path statement.
 Statement WhileStatement.getStatement()
          Returns an execution statement.
 Statement ConditionalStatement.getStatement()
          Returns a primary path statement.
 Statement[] CompoundStatement.getStatements()
          Returns inner statements.
 

Methods in com.jscape.util.workflow.statements with parameters of type Statement
 void ConditionalStatement.setElseStatement(Statement value)
          Sets a new alternate path statement.
 void WhileStatement.setStatement(Statement value)
          Sets a new execution statement.
 void ConditionalStatement.setStatement(Statement value)
          Sets a new primary path statement.
 void CompoundStatement.setStatements(Statement[] value)
          Sets inner statements.
 

Constructors in com.jscape.util.workflow.statements with parameters of type Statement
CompoundStatement(Statement[] statements)
          Creates a new statement instance.
ConditionalStatement(Expression expression, Statement statement, Statement elseStatement)
          Creates a new statement instance.
WhileStatement(Expression expression, Statement statement)
          Creates a new statement instance.
 



Copyright © 2007 JSCAPE Corp. All Rights Reserved.