Uses of Class
edu.cmu.sei.aadl.model.properties.PropertyDoesNotApplyToHolderException

Packages that use PropertyDoesNotApplyToHolderException
edu.cmu.sei.aadl.model.core   
edu.cmu.sei.aadl.model.core.impl This package contains interfaces and classes that represent the abstract component objects as well as the pacakge concepts. 
edu.cmu.sei.aadl.model.properties This package contains interfaces and classes that are used in the lookup of property values. 
 

Uses of PropertyDoesNotApplyToHolderException in edu.cmu.sei.aadl.model.core
 

Methods in edu.cmu.sei.aadl.model.core that throw PropertyDoesNotApplyToHolderException
 ModalPropertyValue PropertyHolder.getPropertyValue(PropertyDefinition property)
          Get the property value for a particular model element and property.
 java.util.List PropertyHolder.getPropertyValueList(PropertyDefinition property)
          Retrieves a non-modal property value as a list.
 PropertyValue PropertyHolder.getSimplePropertyValue(PropertyDefinition property)
          Retrieves the property value of a non-modal, single-valued property.
 

Uses of PropertyDoesNotApplyToHolderException in edu.cmu.sei.aadl.model.core.impl
 

Methods in edu.cmu.sei.aadl.model.core.impl that throw PropertyDoesNotApplyToHolderException
 ModalPropertyValue PropertyHolderImpl.getPropertyValue(PropertyDefinition property)
          Returns the property value for the property specified by property
 java.util.List PropertyHolderImpl.getPropertyValueList(PropertyDefinition property)
          Retrieves a non-modal property value as a list.
 PropertyValue PropertyHolderImpl.getSimplePropertyValue(PropertyDefinition property)
          retrieves the property value of a non-modal, single-valued property Use this method if you know the property can only have a single value and is not modal
 

Uses of PropertyDoesNotApplyToHolderException in edu.cmu.sei.aadl.model.properties
 

Methods in edu.cmu.sei.aadl.model.properties that throw PropertyDoesNotApplyToHolderException
static boolean PropertyUtils.getBooleanValue(PropertyHolder ph, PropertyDefinition pd)
          Get a non-modal boolean property value.
static EnumLiteral PropertyUtils.getEnumLiteral(PropertyHolder ph, PropertyDefinition pd)
          Get a non-modal enumeration property value.
static long PropertyUtils.getIntegerValue(PropertyHolder ph, PropertyDefinition pd)
          Get a non-modal integer property value with no units.
static double PropertyUtils.getRealValue(PropertyHolder ph, PropertyDefinition pd)
          Get a non-modal real property with no units Throws an exception if no property value exists or an error occurs.
static double PropertyUtils.getScaledNumberValue(PropertyHolder ph, PropertyDefinition pd, UnitLiteral unit)
          Get a non-modal numeric property value scaled to the given unit.
static double PropertyUtils.getScaledRangeDelta(PropertyHolder ph, PropertyDefinition pd, UnitLiteral unit)
          Return the delta value of a non-modal range property value scaled to a given unit.
static double PropertyUtils.getScaledRangeMaximum(PropertyHolder ph, PropertyDefinition pd, UnitLiteral unit)
          Return the maximum value of a non-modal range property value scaled to a given unit.
static double PropertyUtils.getScaledRangeMinimum(PropertyHolder ph, PropertyDefinition pd, UnitLiteral unit)
          Return the minimum value of a non-modal range property value scaled to a given unit.
static java.lang.String PropertyUtils.getStringValue(PropertyHolder ph, PropertyDefinition pd)
          Get a non-modal string property value.