Uses of Class
org.eclipse.mofscript.MOFScriptModel.ArithmeticOperator

Packages that use ArithmeticOperator
org.eclipse.mofscript.MOFScriptModel   
org.eclipse.mofscript.MOFScriptModel.impl   
org.eclipse.mofscript.MOFScriptModel.validation   
org.eclipse.mofscript.parser   
 

Uses of ArithmeticOperator in org.eclipse.mofscript.MOFScriptModel
 

Fields in org.eclipse.mofscript.MOFScriptModel declared as ArithmeticOperator
static ArithmeticOperator ArithmeticOperator.DIV_LITERAL
          The 'DIV' literal object
static ArithmeticOperator ArithmeticOperator.MINUS_LITERAL
          The 'MINUS' literal object
static ArithmeticOperator ArithmeticOperator.MULT_LITERAL
          The 'MULT' literal object
static ArithmeticOperator ArithmeticOperator.PLUS_LITERAL
          The 'PLUS' literal object
 

Methods in org.eclipse.mofscript.MOFScriptModel that return ArithmeticOperator
static ArithmeticOperator ArithmeticOperator.get(int value)
          Returns the 'Arithmetic Operator' literal with the specified integer value
static ArithmeticOperator ArithmeticOperator.get(java.lang.String literal)
          Returns the 'Arithmetic Operator' literal with the specified literal value
static ArithmeticOperator ArithmeticOperator.getByName(java.lang.String name)
          Returns the 'Arithmetic Operator' literal with the specified name
 ArithmeticOperator ArithmeticExpression.getOperator()
          Returns the value of the 'Operator' attribute.
 

Methods in org.eclipse.mofscript.MOFScriptModel with parameters of type ArithmeticOperator
 void ArithmeticExpression.setOperator(ArithmeticOperator value)
          Sets the value of the 'Operator' attribute
 

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

Methods in org.eclipse.mofscript.MOFScriptModel.impl that return ArithmeticOperator
 ArithmeticOperator MOFScriptModelFactoryImpl.createArithmeticOperatorFromString(org.eclipse.emf.ecore.EDataType eDataType, java.lang.String initialValue)
           
 ArithmeticOperator ArithmeticExpressionImpl.getOperator()
           
 

Methods in org.eclipse.mofscript.MOFScriptModel.impl with parameters of type ArithmeticOperator
 void ArithmeticExpressionImpl.setOperator(ArithmeticOperator newOperator)
           
 

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

Methods in org.eclipse.mofscript.MOFScriptModel.validation with parameters of type ArithmeticOperator
 boolean ArithmeticExpressionValidator.validateOperator(ArithmeticOperator value)
           
 

Uses of ArithmeticOperator in org.eclipse.mofscript.parser
 

Methods in org.eclipse.mofscript.parser that return ArithmeticOperator
 ArithmeticOperator MofScript2Parser.arithmeticOperator()