/** */ package rba.core; /** * * A representation of the model object 'Named Element'. * * * * * * *

* The following features are supported: *

* * * @see rba.core.RBACorePackage#getNamedElement() * @model abstract="true" * @generated */ public interface NamedElement extends ModelElement { /** * Returns the value of the 'Name' attribute. * * * * * * @return the value of the 'Name' attribute. * @see #setName(String) * @see rba.core.RBACorePackage#getNamedElement_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link rba.core.NamedElement#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // NamedElement