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

Packages that use MOFScriptStatement
org.sintef.mofscript.MOFScriptModel   
org.sintef.mofscript.MOFScriptModel.impl   
org.sintef.mofscript.MOFScriptModel.util   
org.sintef.mofscript.parser   
org.sintef.mofscript.runtime   
org.sintef.mofscript.runtime.statement   
 

Uses of MOFScriptStatement in org.sintef.mofscript.MOFScriptModel
 

Subinterfaces of MOFScriptStatement in org.sintef.mofscript.MOFScriptModel
 interface BreakStatement
          A representation of the model object 'Break Statement'
 interface CreateStatement
          A representation of the model object 'Create 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 WhileStatement
          A representation of the model object 'While Statement'
 

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

Classes in org.sintef.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 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 WhileStatementImpl
          An implementation of the model object 'While Statement'
 

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

Methods in org.sintef.mofscript.MOFScriptModel.util with parameters of type MOFScriptStatement
 java.lang.Object MOFScriptModelSwitch.caseMOFScriptStatement(MOFScriptStatement object)
          Returns the result of interpretting the object as an instance of 'MOF Script Statement'
 

Uses of MOFScriptStatement in org.sintef.mofscript.parser
 

Methods in org.sintef.mofscript.parser that return MOFScriptStatement
 MOFScriptStatement MofScriptParser.singleStatement()
          Single statement
 

Methods in org.sintef.mofscript.parser with parameters of type MOFScriptStatement
 void MofScriptModelChecker.checkStatement(MOFScriptStatement statement, boolean postCheck)
          Checks a statement within a rule
 

Uses of MOFScriptStatement in org.sintef.mofscript.runtime
 

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

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

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

Constructors in org.sintef.mofscript.runtime.statement with parameters of type MOFScriptStatement
BreakStatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
          Constructor
CreateStatementExecutor(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
StatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)
          Constructor
WhileStatementExecutor(MOFScriptStatement statement, ExecutionEnvironment env, RuleExecutor ownerRule)