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.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 that return types with arguments of type SimpleExpression
 org.eclipse.emf.common.util.EList<SimpleExpression> SimpleExpression.getAdditionalExpressionPart()
          Returns the value of the 'Additional Expression Part' containment reference list.
 

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'
 

Fields in org.eclipse.mofscript.MOFScriptModel.impl declared as SimpleExpression
protected  SimpleExpression IteratorStatementImpl.source
          The cached value of the 'Source' containment reference
protected  SimpleExpression SelectExpressionImpl.sourceReference
          The cached value of the 'Source Reference' containment reference
 

Fields in org.eclipse.mofscript.MOFScriptModel.impl with type parameters of type SimpleExpression
protected  org.eclipse.emf.common.util.EList<SimpleExpression> SimpleExpressionImpl.additionalExpressionPart
          The cached value of the 'Additional Expression Part' containment reference list
 

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 that return types with arguments of type SimpleExpression
 org.eclipse.emf.common.util.EList<SimpleExpression> SimpleExpressionImpl.getAdditionalExpressionPart()
           
 

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
 T MOFScriptModelSwitch.caseSimpleExpression(SimpleExpression object)
          Returns the result of interpreting the object as an instance of 'Simple Expression'
 

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)