Uses of Interface
org.eclipse.mofscript.MOFScriptModel.StatementBlock

Packages that use StatementBlock
org.eclipse.mofscript.MOFScriptModel   
org.eclipse.mofscript.MOFScriptModel.impl   
org.eclipse.mofscript.MOFScriptModel.util   
org.eclipse.mofscript.parser   
org.eclipse.mofscript.runtime   
org.eclipse.mofscript.runtime.statement   
 

Uses of StatementBlock in org.eclipse.mofscript.MOFScriptModel
 

Methods in org.eclipse.mofscript.MOFScriptModel that return StatementBlock
 StatementBlock MOFScriptModelFactory.createStatementBlock()
          Returns a new object of class 'Statement Block'
 

Methods in org.eclipse.mofscript.MOFScriptModel that return types with arguments of type StatementBlock
 org.eclipse.emf.common.util.EList<StatementBlock> MOFScriptStatementOwner.getBlocks()
          Returns the value of the 'Blocks' containment reference list.
 

Uses of StatementBlock in org.eclipse.mofscript.MOFScriptModel.impl
 

Classes in org.eclipse.mofscript.MOFScriptModel.impl that implement StatementBlock
 class StatementBlockImpl
          An implementation of the model object 'Statement Block'
 

Fields in org.eclipse.mofscript.MOFScriptModel.impl with type parameters of type StatementBlock
protected  org.eclipse.emf.common.util.EList<StatementBlock> MOFScriptStatementOwnerImpl.blocks
          The cached value of the 'Blocks' containment reference list
 

Methods in org.eclipse.mofscript.MOFScriptModel.impl that return StatementBlock
 StatementBlock MOFScriptModelFactoryImpl.createStatementBlock()
           
 

Methods in org.eclipse.mofscript.MOFScriptModel.impl that return types with arguments of type StatementBlock
 org.eclipse.emf.common.util.EList<StatementBlock> MOFScriptStatementOwnerImpl.getBlocks()
           
 

Uses of StatementBlock in org.eclipse.mofscript.MOFScriptModel.util
 

Methods in org.eclipse.mofscript.MOFScriptModel.util with parameters of type StatementBlock
 T MOFScriptModelSwitch.caseStatementBlock(StatementBlock object)
          Returns the result of interpreting the object as an instance of 'Statement Block'
 

Uses of StatementBlock in org.eclipse.mofscript.parser
 

Methods in org.eclipse.mofscript.parser with parameters of type StatementBlock
 void MofScript2Parser.composedExpressionList(MOFScriptStatementOwner owner, StatementBlock statementBlock)
           
 void MofScript2Parser.transformationRuleStatements(MOFScriptStatementOwner owner, StatementBlock statementBlock)
           
 

Uses of StatementBlock in org.eclipse.mofscript.runtime
 

Fields in org.eclipse.mofscript.runtime declared as StatementBlock
protected  StatementBlock RuleExecutor._aBlock
           
 

Methods in org.eclipse.mofscript.runtime that return StatementBlock
 StatementBlock RuleExecutor.getStatementBlock()
           
 

Uses of StatementBlock in org.eclipse.mofscript.runtime.statement
 

Method parameters in org.eclipse.mofscript.runtime.statement with type arguments of type StatementBlock
protected  void LoopStatementExecutor.executeLoopBlock(java.util.List<StatementBlock> blocks, java.util.List<MOFScriptStatement> statements, ExecutionEnvironment env, java.lang.Object rule_create)