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

Packages that use SimpleExpression
org.eclipse.mofscript.MOFScriptModel   
org.eclipse.mofscript.MOFScriptModel.impl   
org.eclipse.mofscript.MOFScriptModel.util   
org.eclipse.mofscript.MOFScriptModel.validation   
org.eclipse.mofscript.parser   
 

Uses of SimpleExpression in org.eclipse.mofscript.MOFScriptModel
 

Subinterfaces of SimpleExpression in org.eclipse.mofscript.MOFScriptModel
 interface FunctionCall
          A representation of the model object 'Function Call'
 interface Literal
          A representation of the model object 'Literal'
 interface Reference
          A representation of the model object 'Reference'
 

Methods in org.eclipse.mofscript.MOFScriptModel that return SimpleExpression
 SimpleExpression MOFScriptModelFactory.createSimpleExpression()
          Returns a new object of class 'Simple Expression'
 SimpleExpression IteratorStatement.getSource()
          Returns the value of the 'Source' containment reference
 SimpleExpression SelectExpression.getSourceReference()
          Returns the value of the 'Source Reference' containment reference
 

Methods in org.eclipse.mofscript.MOFScriptModel with parameters of type SimpleExpression
 void IteratorStatement.setSource(SimpleExpression value)
          Sets the value of the 'Source' containment reference
 void SelectExpression.setSourceReference(SimpleExpression value)
          Sets the value of the 'Source Reference' containment reference
 

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

Classes in org.eclipse.mofscript.MOFScriptModel.impl that implement SimpleExpression
 class FunctionCallImpl
          An implementation of the model object 'Function Call'
 class LiteralImpl
          An implementation of the model object 'Literal'
 class ReferenceImpl
          An implementation of the model object 'Reference'
 class SimpleExpressionImpl
          An implementation of the model object 'Simple Expression'
 

Methods in org.eclipse.mofscript.MOFScriptModel.impl that return SimpleExpression
 SimpleExpression MOFScriptModelFactoryImpl.createSimpleExpression()
           
 SimpleExpression IteratorStatementImpl.getSource()
           
 SimpleExpression SelectExpressionImpl.getSourceReference()
           
 

Methods in org.eclipse.mofscript.MOFScriptModel.impl with parameters of type SimpleExpression
 org.eclipse.emf.common.notify.NotificationChain IteratorStatementImpl.basicSetSource(SimpleExpression newSource, org.eclipse.emf.common.notify.NotificationChain msgs)
           
 org.eclipse.emf.common.notify.NotificationChain SelectExpressionImpl.basicSetSourceReference(SimpleExpression newSourceReference, org.eclipse.emf.common.notify.NotificationChain msgs)
           
 void IteratorStatementImpl.setSource(SimpleExpression newSource)
           
 void SelectExpressionImpl.setSourceReference(SimpleExpression newSourceReference)
           
 

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

Methods in org.eclipse.mofscript.MOFScriptModel.util with parameters of type SimpleExpression
 java.lang.Object MOFScriptModelSwitch.caseSimpleExpression(SimpleExpression object)
          Returns the result of interpreting the object as an instance of 'Simple Expression'
 

Uses of SimpleExpression in org.eclipse.mofscript.MOFScriptModel.validation
 

Methods in org.eclipse.mofscript.MOFScriptModel.validation with parameters of type SimpleExpression
 boolean IteratorStatementValidator.validateSource(SimpleExpression value)
           
 boolean SelectExpressionValidator.validateSourceReference(SimpleExpression value)
           
 

Uses of SimpleExpression in org.eclipse.mofscript.parser
 

Methods in org.eclipse.mofscript.parser that return SimpleExpression
 SimpleExpression MofScript2Parser.anyKindOfSimpleExpression()
           
 SimpleExpression MofScript2Parser.functionOrReference()
           
 SimpleExpression MofScript2Parser.simpleExpression()
           
 SimpleExpression MofScript2Parser.stringLiteralSimpleExpression()
           
 

Methods in org.eclipse.mofscript.parser with parameters of type SimpleExpression
 IteratorStatement MofScript2Parser.iteratorStatement(SimpleExpression source)