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

Packages that use MOFScriptStatement
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   
org.eclipse.mofscript.runtime.traceability   
 

Uses of MOFScriptStatement in org.eclipse.mofscript.MOFScriptModel
 

Subinterfaces of MOFScriptStatement in org.eclipse.mofscript.MOFScriptModel
 interface BreakStatement
          A representation of the model object 'Break Statement'
 interface CreateStatement
          A representation of the model object 'Create Statement'
 interface DebugStatement
          A representation of the model object 'Debug Statement'
 interface FileStatement
          A representation of the model object 'File Statement'
 interface FunctionCallStatement
          A representation of the model object 'Function Call Statement'
 interface GeneralAssignment
          A representation of the model object 'General Assignment'
 interface IfStatement
          A representation of the model object 'If Statement'
 interface IteratorStatement
          A representation of the model object 'Iterator Statement'
 interface PrintStatement
          A representation of the model object 'Print Statement'
 interface ResultAssignment
          A representation of the model object 'Result Assignment'
 interface ReturnStatement
          A representation of the model object 'Return Statement'
 interface VariableDeclarationStatement
          A representation of the model object 'Variable Declaration Statement'
 interface WhileStatement
          A representation of the model object 'While Statement'
 

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

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

Classes in org.eclipse.mofscript.MOFScriptModel.impl that implement MOFScriptStatement
 class BreakStatementImpl
          An implementation of the model object 'Break Statement'
 class CreateStatementImpl
          An implementation of the model object 'Create Statement'
 class DebugStatementImpl
          An implementation of the model object 'Debug Statement'
 class FileStatementImpl
          An implementation of the model object 'File Statement'
 class FunctionCallStatementImpl
          An implementation of the model object 'Function Call Statement'
 class GeneralAssignmentImpl
          An implementation of the model object 'General Assignment'
 class IfStatementImpl
          An implementation of the model object 'If Statement'
 class IteratorStatementImpl
          An implementation of the model object 'Iterator Statement'
 class MOFScriptStatementImpl
          An implementation of the model object 'MOF Script Statement'
 class PrintStatementImpl
          An implementation of the model object 'Print Statement'
 class ResultAssignmentImpl
          An implementation of the model object 'Result Assignment'
 class ReturnStatementImpl
          An implementation of the model object 'Return Statement'
 class VariableDeclarationStatementImpl
          An implementation of the model object 'Variable Declaration Statement'
 class WhileStatementImpl
          An implementation of the model object 'While Statement'
 

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

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

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

Methods in org.eclipse.mofscript.MOFScriptModel.util with parameters of type MOFScriptStatement
 T MOFScriptModelSwitch.caseMOFScriptStatement(MOFScriptStatement object)
          Returns the result of interpreting the object as an instance of 'MOF Script Statement'
 

Uses of MOFScriptStatement in org.eclipse.mofscript.parser
 

Methods in org.eclipse.mofscript.parser that return MOFScriptStatement
 MOFScriptStatement MofScript2Parser.singleStatement()
           
 

Methods in org.eclipse.mofscript.parser with parameters of type MOFScriptStatement
 void MofScriptModelChecker.checkStatement(MOFScriptStatement statement, boolean postCheck)
          Checks a statement within a rule
protected  void MofScript2Parser.checkVariableDeclarationStatement(MOFScriptStatement statement, MOFScriptStatementOwner owner)
           
 

Uses of MOFScriptStatement in org.eclipse.mofscript.runtime
 

Methods in org.eclipse.mofscript.runtime with parameters of type MOFScriptStatement
static StatementExecutor MofScriptExecuterFactory.createStatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRuleExecutor)
           
 

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

Fields in org.eclipse.mofscript.runtime.statement declared as MOFScriptStatement
protected  MOFScriptStatement StatementExecutor._statement
           
 

Constructors in org.eclipse.mofscript.runtime.statement with parameters of type MOFScriptStatement
BreakStatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
          Constructor
DebugStatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
          Constructor
FileStatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
          Constructor
FunctionCallStatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
          Constructor
GeneralAssignmentExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
          Constructor
IfStatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
          Constructor
IteratorStatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
          Constructor
PrintStatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
          Constructor
ResultAssignmentExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
          Constructor
ReturnStatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
           
StatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
          Constructor
VariableDeclarationStatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
           
WhileStatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
           
 

Uses of MOFScriptStatement in org.eclipse.mofscript.runtime.traceability
 

Constructors in org.eclipse.mofscript.runtime.traceability with parameters of type MOFScriptStatement
TraceabilityGenAssignmentExec(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)