123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- */
- package ua.ansymo.hintco;
- import org.eclipse.emf.ecore.EObject;
- /**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>IDed</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * </p>
- * <ul>
- * <li>{@link ua.ansymo.hintco.IDed#getIdentifier <em>Identifier</em>}</li>
- * </ul>
- *
- * @see ua.ansymo.hintco.HintcoPackage#getIDed()
- * @model abstract="true"
- * @generated
- */
- public interface IDed extends EObject {
- /**
- * Returns the value of the '<em><b>Identifier</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Identifier</em>' attribute isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Identifier</em>' attribute.
- * @see #setIdentifier(String)
- * @see ua.ansymo.hintco.HintcoPackage#getIDed_Identifier()
- * @model unique="false"
- * @generated
- */
- String getIdentifier();
- /**
- * Sets the value of the '{@link ua.ansymo.hintco.IDed#getIdentifier <em>Identifier</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Identifier</em>' attribute.
- * @see #getIdentifier()
- * @generated
- */
- void setIdentifier(String value);
- } // IDed
|