12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /**
- */
- package ua.ansymo.hintco;
- import org.eclipse.emf.common.util.EList;
- import org.eclipse.emf.ecore.EObject;
- /**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Alternative</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * </p>
- * <ul>
- * <li>{@link ua.ansymo.hintco.Alternative#getWeight <em>Weight</em>}</li>
- * <li>{@link ua.ansymo.hintco.Alternative#isSelected <em>Selected</em>}</li>
- * <li>{@link ua.ansymo.hintco.Alternative#getImplies <em>Implies</em>}</li>
- * </ul>
- *
- * @see ua.ansymo.hintco.HintcoPackage#getAlternative()
- * @model abstract="true"
- * @generated
- */
- public interface Alternative extends EObject {
- /**
- * Returns the value of the '<em><b>Weight</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Weight</em>' attribute isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Weight</em>' attribute.
- * @see #setWeight(int)
- * @see ua.ansymo.hintco.HintcoPackage#getAlternative_Weight()
- * @model unique="false"
- * @generated
- */
- int getWeight();
- /**
- * Sets the value of the '{@link ua.ansymo.hintco.Alternative#getWeight <em>Weight</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Weight</em>' attribute.
- * @see #getWeight()
- * @generated
- */
- void setWeight(int value);
- /**
- * Returns the value of the '<em><b>Selected</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Selected</em>' attribute isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Selected</em>' attribute.
- * @see #setSelected(boolean)
- * @see ua.ansymo.hintco.HintcoPackage#getAlternative_Selected()
- * @model unique="false"
- * @generated
- */
- boolean isSelected();
- /**
- * Sets the value of the '{@link ua.ansymo.hintco.Alternative#isSelected <em>Selected</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Selected</em>' attribute.
- * @see #isSelected()
- * @generated
- */
- void setSelected(boolean value);
- /**
- * Returns the value of the '<em><b>Implies</b></em>' reference list.
- * The list contents are of type {@link ua.ansymo.hintco.Alternative}.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Implies</em>' reference list isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Implies</em>' reference list.
- * @see ua.ansymo.hintco.HintcoPackage#getAlternative_Implies()
- * @model
- * @generated
- */
- EList<Alternative> getImplies();
- } // Alternative
|