IDed.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**
  2. */
  3. package ua.ansymo.hintco;
  4. import org.eclipse.emf.ecore.EObject;
  5. /**
  6. * <!-- begin-user-doc -->
  7. * A representation of the model object '<em><b>IDed</b></em>'.
  8. * <!-- end-user-doc -->
  9. *
  10. * <p>
  11. * The following features are supported:
  12. * </p>
  13. * <ul>
  14. * <li>{@link ua.ansymo.hintco.IDed#getIdentifier <em>Identifier</em>}</li>
  15. * </ul>
  16. *
  17. * @see ua.ansymo.hintco.HintcoPackage#getIDed()
  18. * @model abstract="true"
  19. * @generated
  20. */
  21. public interface IDed extends EObject {
  22. /**
  23. * Returns the value of the '<em><b>Identifier</b></em>' attribute.
  24. * <!-- begin-user-doc -->
  25. * <p>
  26. * If the meaning of the '<em>Identifier</em>' attribute isn't clear,
  27. * there really should be more of a description here...
  28. * </p>
  29. * <!-- end-user-doc -->
  30. * @return the value of the '<em>Identifier</em>' attribute.
  31. * @see #setIdentifier(String)
  32. * @see ua.ansymo.hintco.HintcoPackage#getIDed_Identifier()
  33. * @model unique="false"
  34. * @generated
  35. */
  36. String getIdentifier();
  37. /**
  38. * Sets the value of the '{@link ua.ansymo.hintco.IDed#getIdentifier <em>Identifier</em>}' attribute.
  39. * <!-- begin-user-doc -->
  40. * <!-- end-user-doc -->
  41. * @param value the new value of the '<em>Identifier</em>' attribute.
  42. * @see #getIdentifier()
  43. * @generated
  44. */
  45. void setIdentifier(String value);
  46. } // IDed