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

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

Uses of ArithmeticOperator in org.eclipse.mofscript.MOFScriptModel
 

Fields in org.eclipse.mofscript.MOFScriptModel with type parameters of type ArithmeticOperator
static java.util.List<ArithmeticOperator> ArithmeticOperator.VALUES
          A public read-only list of all the 'Arithmetic Operator' enumerators
 

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.
static ArithmeticOperator ArithmeticOperator.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ArithmeticOperator[] ArithmeticOperator.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

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
 

Fields in org.eclipse.mofscript.MOFScriptModel.impl declared as ArithmeticOperator
protected  ArithmeticOperator ArithmeticExpressionImpl.operator
          The cached value of the 'Operator' attribute
protected static ArithmeticOperator ArithmeticExpressionImpl.OPERATOR_EDEFAULT
          The default value of the 'Operator' attribute
 

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.parser
 

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