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

Packages that use FunctionCall
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.expression   
org.sintef.mofscript.uml2Extensions.parser   
org.sintef.mofscript.uml2Extensions.runtime   
 

Uses of FunctionCall in org.sintef.mofscript.MOFScriptModel
 

Methods in org.sintef.mofscript.MOFScriptModel that return FunctionCall
 FunctionCall MOFScriptModelFactory.createFunctionCall()
          Returns a new object of class 'Function Call'
 FunctionCall FunctionCallStatement.getFunction()
          Returns the value of the 'Function' containment reference
 

Methods in org.sintef.mofscript.MOFScriptModel with parameters of type FunctionCall
 void FunctionCallStatement.setFunction(FunctionCall value)
          Sets the value of the 'Function' containment reference
 

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

Classes in org.sintef.mofscript.MOFScriptModel.impl that implement FunctionCall
 class FunctionCallImpl
          An implementation of the model object 'Function Call'
 

Fields in org.sintef.mofscript.MOFScriptModel.impl declared as FunctionCall
protected  FunctionCall FunctionCallStatementImpl.function
          The cached value of the 'Function' containment reference
 

Methods in org.sintef.mofscript.MOFScriptModel.impl that return FunctionCall
 FunctionCall MOFScriptModelFactoryImpl.createFunctionCall()
           
 FunctionCall FunctionCallStatementImpl.getFunction()
           
 

Methods in org.sintef.mofscript.MOFScriptModel.impl with parameters of type FunctionCall
 org.eclipse.emf.common.notify.NotificationChain FunctionCallStatementImpl.basicSetFunction(FunctionCall newFunction, org.eclipse.emf.common.notify.NotificationChain msgs)
           
 void FunctionCallStatementImpl.setFunction(FunctionCall newFunction)
           
 

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

Methods in org.sintef.mofscript.MOFScriptModel.util with parameters of type FunctionCall
 java.lang.Object MOFScriptModelSwitch.caseFunctionCall(FunctionCall object)
          Returns the result of interpretting the object as an instance of 'Function Call'
 

Uses of FunctionCall in org.sintef.mofscript.parser
 

Methods in org.sintef.mofscript.parser that return FunctionCall
 FunctionCall MofScriptParser.functionCallExpression(java.lang.String sName)
          Function call expression.
 

Methods in org.sintef.mofscript.parser with parameters of type FunctionCall
 void MofScriptParser.actualParameters(FunctionCall call)
          The parameters of a function call
protected  MofScriptParseError MofScriptModelChecker.booleanFunctionOk(java.lang.String functionCalled, FunctionCall fc)
           
protected  MofScriptParseError MofScriptModelChecker.checkParameterUsage(java.lang.String fName, FunctionCall fc, int requiredParamCount)
          Checks the parameters usage Used where for locked number of parameters
protected  MofScriptParseError MofScriptModelChecker.checkParameterUsage(java.lang.String fName, FunctionCall fc, int lowerCount, int upperCount)
          Checks the numbers of parameters
protected  MofScriptParseError MofScriptModelChecker.checkVariableUsage(VariableDeclaration var, java.lang.String functionCalled, FunctionCall fc)
          Check if the usage of a variable (e.g. a Hashtable var) is legal
protected  MofScriptParseError MofScriptModelChecker.hashtableFunctionOk(java.lang.String functionCalled, FunctionCall fc)
           
protected  MofScriptParseError MofScriptModelChecker.integerFunctionOk(java.lang.String functionCalled, FunctionCall fc)
           
protected  MofScriptParseError MofScriptModelChecker.listFunctionOk(java.lang.String functionCalled, FunctionCall fc)
           
protected  void MofScriptModelChecker.postCheckFunctionCall(FunctionCall fc)
          Perform post check of a function call
protected  MofScriptParseError MofScriptModelChecker.realFunctionOk(java.lang.String functionCalled, FunctionCall fc)
           
protected  MofScriptParseError MofScriptModelChecker.stringFunctionOk(java.lang.String functionCalled, FunctionCall fc)
           
protected  MofScriptParseError MofScriptModelChecker.systemFunctionOk(java.lang.String functionCalled, FunctionCall fc)
           
 

Uses of FunctionCall in org.sintef.mofscript.runtime
 

Methods in org.sintef.mofscript.runtime with parameters of type FunctionCall
 TransformationRule TransformationProxy.getTransformationRuleForType(FunctionCall f, java.lang.String name, java.lang.String ownerTransformation, java.lang.String possibleScope, java.lang.Object contextObject)
           
 

Uses of FunctionCall in org.sintef.mofscript.runtime.expression
 

Methods in org.sintef.mofscript.runtime.expression with parameters of type FunctionCall
protected  java.lang.Object SimpleExpressionEvaluator.handleAdditionalFunction(java.lang.Object value, FunctionCall lf)
           
protected  java.lang.Object FunctionCallEvaluator.handleFunctionCall(FunctionCall f, java.lang.Object inputContext)
           
protected  java.lang.Object FunctionCallEvaluator.handleModelEscapeFunction(java.lang.Object variable, java.lang.String fName, FunctionCall f)
           
protected  java.lang.Object FunctionCallEvaluator.handleOclGeneralFunction(java.lang.Object variable, java.lang.String fName, FunctionCall f)
           
protected  java.lang.Object SimpleExpressionEvaluator.handleStringFunction(java.lang.Object value, FunctionCall lf)
           
protected  java.lang.Object FunctionCallEvaluator.handleSystemFunction(java.lang.String fName, FunctionCall f)
           
protected  java.lang.Object FunctionCallEvaluator.handleVariableFunctionCall(java.lang.Object variable, java.lang.String fName, FunctionCall f)
           
 

Uses of FunctionCall in org.sintef.mofscript.uml2Extensions.parser
 

Methods in org.sintef.mofscript.uml2Extensions.parser with parameters of type FunctionCall
protected  void MofScriptUMLModelChecker.postCheckFunctionCall(FunctionCall fc)
          postCheckFunctionCall
 

Uses of FunctionCall in org.sintef.mofscript.uml2Extensions.runtime
 

Methods in org.sintef.mofscript.uml2Extensions.runtime with parameters of type FunctionCall
protected  java.lang.Object UMLFunctionCallEvaluator.handleVariableFunctionCall(java.lang.Object variable, java.lang.String fName, FunctionCall f)
          Handles the variable function call If the call is a valid UML2 call this is treated, else the call is delegated to super class.