edu.cmu.sei.aadl.model.property
Interface PropertyAssociation

All Superinterfaces:
AObject, org.eclipse.emf.ecore.EObject, org.eclipse.core.runtime.IAdaptable, ModeMember, NamedElement, org.eclipse.emf.common.notify.Notifier, PropertyHolder, PropertyValueHolder
All Known Implementing Classes:
PropertyAssociationImpl

public interface PropertyAssociation
extends ModeMember, PropertyValueHolder

A representation of the model object 'Association'.

The following features are supported:

See Also:
PropertyPackage.getPropertyAssociation()

Field Summary
static java.lang.String copyright
           
 
Method Summary
 void addAppliesTo(PropertyHolder value)
          Adds to the list the value of the 'Applies To' reference list
 void addClassifierReference(ClassifierReference cr)
          set bindings reference names from ClassifierReference
 void addComponentPath(java.lang.String newComponentPath)
          parsed component path element is added
 void addInBinding(ComponentClassifier value)
          Adds to the list the value of the 'In Binding' reference list
 void addPropertyValue(org.eclipse.emf.common.util.EList newPropertyValueList)
          Add a proeprty value list as property value
 void addPropertyValue(PropertyValue value)
          Adds to the list the value of the 'Property Value' containment reference list
 org.eclipse.emf.common.util.EList getAppliesTo()
          Returns the value of the 'Applies To' reference list.
 org.eclipse.emf.common.util.EList getClassifierReference()
          get bindings references from ClassifierReference
 org.eclipse.emf.common.util.EList getComponentPath()
          returns list of string representing component path
 org.eclipse.emf.common.util.EList getInBinding()
          Returns the value of the 'In Binding' reference list.
 ParsedPropertyReference getParsedPropertyReference()
          get the parsed property reference
 PropertyDefinition getPropertyDefinition()
          Returns the value of the 'Property Definition' reference
 org.eclipse.emf.common.util.EList getPropertyValue()
          Returns the value of the 'Property Value' containment reference list.
 java.lang.String getQualifiedName()
          get the qualified property name
 AadlPropertyValue getValue()
          Get the value from the property assocation abstracted as a AadlPropertyValue.
 boolean isAccess()
          Returns the value of the 'Access' attribute.
 boolean isAppend()
          Returns the value of the 'Append' attribute.
 boolean isConstant()
          Returns the value of the 'Constant' attribute.
 boolean isDerived()
          Returns the value of the 'Derived' attribute.
 void setAccess(boolean value)
          Sets the value of the 'Access' attribute
 void setAppend(boolean value)
          Sets the value of the 'Append' attribute
 void setConstant(boolean value)
          Sets the value of the 'Constant' attribute
 void setDerived(boolean value)
          Sets the value of the 'Derived' attribute
 void setParsedPropertyReference(ParsedPropertyReference pr)
          set the parsed property reference
 void setPropertyDefinition(PropertyDefinition value)
          Sets the value of the 'Property Definition' reference
 
Methods inherited from interface edu.cmu.sei.aadl.model.core.ModeMember
addInModes, addModeName, getAllInModes, getInModes, getModeName, isAllInMode, isInMode, isNoMode, setNoMode
 
Methods inherited from interface edu.cmu.sei.aadl.model.core.PropertyHolder
acceptsProperty, addProperty, addPropertyValue, checkPropertyAssociation, findPropertyAssociation, getProperties, getPropertyAssociation, getPropertyValue, getPropertyValueInternal, getPropertyValueList, getSimplePropertyValue, isModalPropertyValue, removeContainedPropertyAssociations, removeContainedPropertyAssociations, removePropertyAssociations, removePropertyAssociations, setContainedPropertyValue, setContainedPropertyValue, setContainedPropertyValue, setContainedPropertyValue, setProperties, setPropertyValue, setPropertyValue, setPropertyValue, setPropertyValue
 
Methods inherited from interface edu.cmu.sei.aadl.model.core.NamedElement
getName, setName
 
Methods inherited from interface edu.cmu.sei.aadl.model.core.AObject
addComment, getAadlSpec, getAObjectRoot, getChildren, getComment, getContainingClassifier, getContainingClassifierNameSpace, getContainingComponentImpl, getContainingComponentType, getContainingPropertyAssociationDefinitionConstant, getContainingSubcomponent, getLocationReference, getReferencedObject, getSecondReferencedObject, getSystemInstance, setLocationReference, setLocationReference
 
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eIsProxy, eIsSet, eResource, eSet, eUnset
 
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
 
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
 

Field Detail

copyright

static final java.lang.String copyright

See Also:
Constant Field Values
Method Detail

getPropertyDefinition

PropertyDefinition getPropertyDefinition()
Returns the value of the 'Property Definition' reference.

If the meaning of the 'Property Definition' reference isn't clear, there really should be more of a description here...

Returns:
the value of the 'Property Definition' reference.
See Also:
setPropertyDefinition(PropertyDefinition), PropertyPackage.getPropertyAssociation_PropertyDefinition()

setPropertyDefinition

void setPropertyDefinition(PropertyDefinition value)
Sets the value of the 'Property Definition' reference.

Parameters:
value - the new value of the 'Property Definition' reference.
See Also:
getPropertyDefinition()

getPropertyValue

org.eclipse.emf.common.util.EList getPropertyValue()
Returns the value of the 'Property Value' containment reference list. The list contents are of type PropertyValue.

If the meaning of the 'Property Value' containment reference list isn't clear, there really should be more of a description here...

Returns:
the value of the 'Property Value' containment reference list.
See Also:
PropertyPackage.getPropertyAssociation_PropertyValue()

addPropertyValue

void addPropertyValue(PropertyValue value)
Adds to the list the value of the 'Property Value' containment reference list.

Parameters:
value - the value to add to 'Property Value' containment reference list.

addPropertyValue

void addPropertyValue(org.eclipse.emf.common.util.EList newPropertyValueList)
Add a proeprty value list as property value

Parameters:
newPropertyValueList - EList of PropertyValue

getInBinding

org.eclipse.emf.common.util.EList getInBinding()
Returns the value of the 'In Binding' reference list. The list contents are of type ComponentClassifier.

If the meaning of the 'In Binding' reference list isn't clear, there really should be more of a description here...

Returns:
the value of the 'In Binding' reference list.
See Also:
PropertyPackage.getPropertyAssociation_InBinding()

addInBinding

void addInBinding(ComponentClassifier value)
Adds to the list the value of the 'In Binding' reference list.

Parameters:
value - the value to add to 'In Binding' reference list.

getAppliesTo

org.eclipse.emf.common.util.EList getAppliesTo()
Returns the value of the 'Applies To' reference list. The list contents are of type PropertyHolder.

If the meaning of the 'Applies To' reference list isn't clear, there really should be more of a description here...

Returns:
the value of the 'Applies To' reference list.
See Also:
PropertyPackage.getPropertyAssociation_AppliesTo()

addAppliesTo

void addAppliesTo(PropertyHolder value)
Adds to the list the value of the 'Applies To' reference list.

Parameters:
value - the value to add to 'Applies To' reference list.

isDerived

boolean isDerived()
Returns the value of the 'Derived' attribute. The default value is "false".

If the meaning of the 'Derived' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Derived' attribute.
See Also:
setDerived(boolean), PropertyPackage.getPropertyAssociation_Derived()

setDerived

void setDerived(boolean value)
Sets the value of the 'Derived' attribute.

Parameters:
value - the new value of the 'Derived' attribute.
See Also:
isDerived()

isConstant

boolean isConstant()
Returns the value of the 'Constant' attribute. The default value is "false".

If the meaning of the 'Constant' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Constant' attribute.
See Also:
setConstant(boolean), PropertyPackage.getPropertyAssociation_Constant()

setConstant

void setConstant(boolean value)
Sets the value of the 'Constant' attribute.

Parameters:
value - the new value of the 'Constant' attribute.
See Also:
isConstant()

isAccess

boolean isAccess()
Returns the value of the 'Access' attribute. The default value is "false".

If the meaning of the 'Access' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Access' attribute.
See Also:
setAccess(boolean), PropertyPackage.getPropertyAssociation_Access()

setAccess

void setAccess(boolean value)
Sets the value of the 'Access' attribute.

Parameters:
value - the new value of the 'Access' attribute.
See Also:
isAccess()

isAppend

boolean isAppend()
Returns the value of the 'Append' attribute. The default value is "false".

If the meaning of the 'Append' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Append' attribute.
See Also:
setAppend(boolean), PropertyPackage.getPropertyAssociation_Append()

setAppend

void setAppend(boolean value)
Sets the value of the 'Append' attribute.

Parameters:
value - the new value of the 'Append' attribute.
See Also:
isAppend()

addClassifierReference

void addClassifierReference(ClassifierReference cr)
set bindings reference names from ClassifierReference


getClassifierReference

org.eclipse.emf.common.util.EList getClassifierReference()
get bindings references from ClassifierReference

Returns:
EList of ClassifierReference

getQualifiedName

java.lang.String getQualifiedName()
get the qualified property name

Returns:
String property name with the propertyset

getParsedPropertyReference

ParsedPropertyReference getParsedPropertyReference()
get the parsed property reference

Returns:
ParsedPropertyReference property name with the propertyset

setParsedPropertyReference

void setParsedPropertyReference(ParsedPropertyReference pr)
set the parsed property reference

Parameters:
pr - property name with the propertyset

getValue

AadlPropertyValue getValue()
Get the value from the property assocation abstracted as a AadlPropertyValue.

Returns:
The value

getComponentPath

org.eclipse.emf.common.util.EList getComponentPath()
returns list of string representing component path


addComponentPath

void addComponentPath(java.lang.String newComponentPath)
parsed component path element is added