XMI
Interface ElementAtt

All Known Subinterfaces:
Element
All Known Implementing Classes:
ElementReference, Message, ModelElement, Partition, Presentation, TaggedValue, ViewElement

public interface ElementAtt

ElementAtt is a public interface used to provide those reference attributes which are common to any XMI element.


Method Summary
 java.lang.String getId()
          Gets the element identifier.
 java.lang.String getLabel()
          Gets the element label.
 java.lang.String getUuid()
          Gets the element unique identifier.
 void setId(java.lang.String id)
          Sets the element identifier to given value.
 void setLabel(java.lang.String label)
          Sets the element label to given value.
 void setUuid(java.lang.String uuid)
          Sets the element unique identifier to given value.
 

Method Detail

setId

public void setId(java.lang.String id)
Sets the element identifier to given value.


setLabel

public void setLabel(java.lang.String label)
Sets the element label to given value.


setUuid

public void setUuid(java.lang.String uuid)
Sets the element unique identifier to given value.


getId

public java.lang.String getId()
Gets the element identifier.

Returns:
The identifier string.

getLabel

public java.lang.String getLabel()
Gets the element label.

Returns:
The label string.

getUuid

public java.lang.String getUuid()
Gets the element unique identifier.

Returns:
The unique identifier string.