Package | Description |
---|---|
org.osate.aadl2 | |
org.osate.aadl2.impl | |
org.osate.xtext.aadl2.properties.util |
Modifier and Type | Method and Description |
---|---|
PropertyAcc |
NamedElement.getPropertyValue(Property property)
Get the property value for a particular model element and property.
|
org.eclipse.emf.common.util.EList<PropertyExpression> |
NamedElement.getPropertyValues(java.lang.String propertySetName,
java.lang.String propertyName)
DB: Added for OCL.
|
PropertyExpression |
NamedElement.getSimplePropertyValue(Property property)
Retrieves the property value of a non-modal, single-valued property.
|
Modifier and Type | Method and Description |
---|---|
PropertyExpression |
NamedElementImpl.getNonModalPropertyValue(Property property)
Retrieves the property value (single or list) of a non-modal property.
|
PropertyAcc |
NamedElementImpl.getPropertyValue(Property property)
Returns the property value for the property specified by property
|
java.util.List<PropertyExpression> |
NamedElementImpl.getPropertyValueList(Property property)
Retrieves a non-modal property value as a list.
|
org.eclipse.emf.common.util.EList<PropertyExpression> |
NamedElementImpl.getPropertyValues(java.lang.String p_propertySetName,
java.lang.String p_propertyName) |
PropertyExpression |
NamedElementImpl.getSimplePropertyValue(Property property)
Retrieves the property value of a non-modal, single-valued property.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
PropertyUtils.getBooleanValue(NamedElement ph,
Property pd)
Get a non-modal boolean property value.
|
static EnumerationLiteral |
PropertyUtils.getEnumLiteral(NamedElement ph,
Property pd)
Get a non-modal enumeration property value.
|
static long |
PropertyUtils.getIntegerValue(NamedElement ph,
Property pd)
Get a non-modal integer property value with no units.
|
static double |
PropertyUtils.getRealValue(NamedElement ph,
Property 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(NamedElement ph,
Property pd,
UnitLiteral unit)
Get a non-modal numeric property value scaled to the given unit.
|
static double |
PropertyUtils.getScaledRangeDelta(NamedElement ph,
Property pd,
UnitLiteral unit)
Return the delta value of a non-modal range property value scaled to a
given unit.
|
static double |
PropertyUtils.getScaledRangeMaximum(NamedElement ph,
Property pd,
UnitLiteral unit)
Return the maximum value of a non-modal range property value scaled to a
given unit.
|
static double |
PropertyUtils.getScaledRangeMinimum(NamedElement ph,
Property pd,
UnitLiteral unit)
Return the minimum value of a non-modal range property value scaled to a
given unit.
|
static PropertyExpression |
PropertyUtils.getSimplePropertyListValue(NamedElement ph,
Property pd)
get non-model proeprty list value
|
static PropertyExpression |
PropertyUtils.getSimplePropertyValue(NamedElement ph,
Property pd)
Check that ph is not null and returns the property value by calling
ph.getSimplePropertyValue(pd)
|