Uses of Class
edu.cmu.sei.aadl.aadl2.AccessCategory

Packages that use AccessCategory
edu.cmu.sei.aadl.aadl2   
edu.cmu.sei.aadl.aadl2.impl   
edu.cmu.sei.aadl.aadl2.util   
 

Uses of AccessCategory in edu.cmu.sei.aadl.aadl2
 

Fields in edu.cmu.sei.aadl.aadl2 with type parameters of type AccessCategory
static java.util.List<AccessCategory> AccessCategory.VALUES
          A public read-only list of all the 'Access Category' enumerators
 

Methods in edu.cmu.sei.aadl.aadl2 that return AccessCategory
static AccessCategory AccessCategory.get(int value)
          Returns the 'Access Category' literal with the specified integer value
static AccessCategory AccessCategory.get(java.lang.String literal)
          Returns the 'Access Category' literal with the specified literal value
 AccessCategory AccessConnection.getAccessCategory()
          Returns the value of the 'Access Category' attribute.
static AccessCategory AccessCategory.getByName(java.lang.String name)
          Returns the 'Access Category' literal with the specified name
 AccessCategory Access.getCategory()
          Returns the value of the 'Category' attribute.
 AccessCategory AccessSpecification.getCategory()
          Returns the value of the 'Category' attribute.
static AccessCategory AccessCategory.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccessCategory[] AccessCategory.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in edu.cmu.sei.aadl.aadl2 with parameters of type AccessCategory
 void AccessConnection.setAccessCategory(AccessCategory value)
          Sets the value of the 'Access Category' attribute
 void Access.setCategory(AccessCategory value)
          Sets the value of the 'Category' attribute
 void AccessSpecification.setCategory(AccessCategory value)
          Sets the value of the 'Category' attribute
 

Uses of AccessCategory in edu.cmu.sei.aadl.aadl2.impl
 

Fields in edu.cmu.sei.aadl.aadl2.impl declared as AccessCategory
protected static AccessCategory AccessConnectionImpl.ACCESS_CATEGORY_EDEFAULT
          The default value of the 'Access Category' attribute
protected  AccessCategory AccessConnectionImpl.accessCategory
          The cached value of the 'Access Category' attribute
protected  AccessCategory AccessSpecificationImpl.category
          The cached value of the 'Category' attribute
protected  AccessCategory AccessImpl.category
          The cached value of the 'Category' attribute
protected static AccessCategory AccessSpecificationImpl.CATEGORY_EDEFAULT
          The default value of the 'Category' attribute
protected static AccessCategory AccessImpl.CATEGORY_EDEFAULT
          The default value of the 'Category' attribute
 

Methods in edu.cmu.sei.aadl.aadl2.impl that return AccessCategory
 AccessCategory Aadl2FactoryImpl.createAccessCategoryFromString(org.eclipse.emf.ecore.EDataType eDataType, java.lang.String initialValue)
           
 AccessCategory AccessConnectionImpl.getAccessCategory()
           
 AccessCategory AccessSpecificationImpl.getCategory()
           
 AccessCategory AccessImpl.getCategory()
           
 

Methods in edu.cmu.sei.aadl.aadl2.impl with parameters of type AccessCategory
 void AccessConnectionImpl.setAccessCategory(AccessCategory newAccessCategory)
           
 void AccessSpecificationImpl.setCategory(AccessCategory newCategory)
           
 void AccessImpl.setCategory(AccessCategory newCategory)
           
 

Uses of AccessCategory in edu.cmu.sei.aadl.aadl2.util
 

Methods in edu.cmu.sei.aadl.aadl2.util with parameters of type AccessCategory
 boolean Aadl2Validator.validateAccessCategory(AccessCategory accessCategory, org.eclipse.emf.common.util.DiagnosticChain diagnostics, java.util.Map<java.lang.Object,java.lang.Object> context)