Uses of Class
org.eclipse.ocl.cst.PrePostOrBodyEnum

Packages that use PrePostOrBodyEnum
org.eclipse.ocl.cst   
org.eclipse.ocl.cst.impl   
org.eclipse.ocl.parser   
 

Uses of PrePostOrBodyEnum in org.eclipse.ocl.cst
 

Fields in org.eclipse.ocl.cst with type parameters of type PrePostOrBodyEnum
static java.util.List<PrePostOrBodyEnum> PrePostOrBodyEnum.VALUES
          A public read-only list of all the 'Pre Post Or Body Enum' enumerators.
 

Methods in org.eclipse.ocl.cst that return PrePostOrBodyEnum
static PrePostOrBodyEnum PrePostOrBodyEnum.get(int value)
          Returns the 'Pre Post Or Body Enum' literal with the specified integer value.
static PrePostOrBodyEnum PrePostOrBodyEnum.get(java.lang.String literal)
          Returns the 'Pre Post Or Body Enum' literal with the specified literal value.
static PrePostOrBodyEnum PrePostOrBodyEnum.getByName(java.lang.String name)
          Returns the 'Pre Post Or Body Enum' literal with the specified name.
 PrePostOrBodyEnum PrePostOrBodyDeclCS.getKind()
          Returns the value of the 'Kind' attribute.
static PrePostOrBodyEnum PrePostOrBodyEnum.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PrePostOrBodyEnum[] PrePostOrBodyEnum.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.eclipse.ocl.cst with parameters of type PrePostOrBodyEnum
 void PrePostOrBodyDeclCS.setKind(PrePostOrBodyEnum value)
          Sets the value of the 'Kind' attribute.
 

Uses of PrePostOrBodyEnum in org.eclipse.ocl.cst.impl
 

Fields in org.eclipse.ocl.cst.impl declared as PrePostOrBodyEnum
protected  PrePostOrBodyEnum PrePostOrBodyDeclCSImpl.kind
          The cached value of the 'Kind' attribute.
protected static PrePostOrBodyEnum PrePostOrBodyDeclCSImpl.KIND_EDEFAULT
          The default value of the 'Kind' attribute.
 

Methods in org.eclipse.ocl.cst.impl that return PrePostOrBodyEnum
 PrePostOrBodyEnum CSTFactoryImpl.createPrePostOrBodyEnumFromString(org.eclipse.emf.ecore.EDataType eDataType, java.lang.String initialValue)
           
 PrePostOrBodyEnum PrePostOrBodyDeclCSImpl.getKind()
           
 

Methods in org.eclipse.ocl.cst.impl with parameters of type PrePostOrBodyEnum
 void PrePostOrBodyDeclCSImpl.setKind(PrePostOrBodyEnum newKind)
           
 

Uses of PrePostOrBodyEnum in org.eclipse.ocl.parser
 

Methods in org.eclipse.ocl.parser with parameters of type PrePostOrBodyEnum
protected  PrePostOrBodyDeclCS AbstractOCLParser.createPrePostOrBodyDeclCS(PrePostOrBodyEnum kind, SimpleNameCS simpleNameCS, OCLExpressionCS oclExpressionCS)