/OntoUML/src/OntoUML/URML/DerivationRule.java

http://ontouml.googlecode.com/ · Java · 46 lines · 5 code · 3 blank · 38 comment · 0 complexity · 263b83cbe09d967fdbeace1f0ed6e044 MD5 · raw file

  1. /**
  2. * <copyright>
  3. * </copyright>
  4. *
  5. * $Id$
  6. */
  7. package OntoUML.URML;
  8. import org.eclipse.emf.common.util.EList;
  9. /**
  10. * <!-- begin-user-doc -->
  11. * A representation of the model object '<em><b>Derivation Rule</b></em>'.
  12. * <!-- end-user-doc -->
  13. *
  14. * <p>
  15. * The following features are supported:
  16. * <ul>
  17. * <li>{@link OntoUML.URML.DerivationRule#getConclusion <em>Conclusion</em>}</li>
  18. * </ul>
  19. * </p>
  20. *
  21. * @see OntoUML.URML.URMLPackage#getDerivationRule()
  22. * @model
  23. * @generated
  24. */
  25. public interface DerivationRule extends Rule {
  26. /**
  27. * Returns the value of the '<em><b>Conclusion</b></em>' reference list.
  28. * The list contents are of type {@link OntoUML.URML.Conclusion}.
  29. * It is bidirectional and its opposite is '{@link OntoUML.URML.Conclusion#getConclusionRule <em>Conclusion Rule</em>}'.
  30. * <!-- begin-user-doc -->
  31. * <p>
  32. * If the meaning of the '<em>Conclusion</em>' containment reference list isn't clear,
  33. * there really should be more of a description here...
  34. * </p>
  35. * <!-- end-user-doc -->
  36. * @return the value of the '<em>Conclusion</em>' reference list.
  37. * @see OntoUML.URML.URMLPackage#getDerivationRule_Conclusion()
  38. * @see OntoUML.URML.Conclusion#getConclusionRule
  39. * @model opposite="conclusionRule"
  40. * @generated
  41. */
  42. EList<Conclusion> getConclusion();
  43. } // DerivationRule