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

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

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

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

Methods in edu.cmu.sei.aadl.aadl2 that return PortCategory
static PortCategory PortCategory.get(int value)
          Returns the 'Port Category' literal with the specified integer value
static PortCategory PortCategory.get(java.lang.String literal)
          Returns the 'Port Category' literal with the specified literal value
static PortCategory PortCategory.getByName(java.lang.String name)
          Returns the 'Port Category' literal with the specified name
 PortCategory PortSpecification.getCategory()
          Returns the value of the 'Category' attribute.
 PortCategory Port.getCategory()
          Returns the value of the 'Category' attribute.
static PortCategory PortCategory.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PortCategory[] PortCategory.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 PortCategory
 void PortSpecification.setCategory(PortCategory value)
          Sets the value of the 'Category' attribute
 void Port.setCategory(PortCategory value)
          Sets the value of the 'Category' attribute
 

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

Fields in edu.cmu.sei.aadl.aadl2.impl declared as PortCategory
protected  PortCategory PortSpecificationImpl.category
          The cached value of the 'Category' attribute
protected  PortCategory PortImpl.category
          The cached value of the 'Category' attribute
protected static PortCategory PortSpecificationImpl.CATEGORY_EDEFAULT
          The default value of the 'Category' attribute
protected static PortCategory PortImpl.CATEGORY_EDEFAULT
          The default value of the 'Category' attribute
 

Methods in edu.cmu.sei.aadl.aadl2.impl that return PortCategory
 PortCategory Aadl2FactoryImpl.createPortCategoryFromString(org.eclipse.emf.ecore.EDataType eDataType, java.lang.String initialValue)
           
 PortCategory PortSpecificationImpl.getCategory()
           
 PortCategory PortImpl.getCategory()
           
 

Methods in edu.cmu.sei.aadl.aadl2.impl with parameters of type PortCategory
 void PortSpecificationImpl.setCategory(PortCategory newCategory)
           
 void PortImpl.setCategory(PortCategory newCategory)
           
 

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

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