/** */ package ua.ansymo.hintco; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Alternative'. * * *

* The following features are supported: *

* * * @see ua.ansymo.hintco.HintcoPackage#getAlternative() * @model abstract="true" * @generated */ public interface Alternative extends EObject { /** * Returns the value of the 'Weight' attribute. * *

* If the meaning of the 'Weight' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Weight' 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 Weight}' attribute. * * * @param value the new value of the 'Weight' attribute. * @see #getWeight() * @generated */ void setWeight(int value); /** * Returns the value of the 'Selected' attribute. * *

* If the meaning of the 'Selected' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Selected' 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 Selected}' attribute. * * * @param value the new value of the 'Selected' attribute. * @see #isSelected() * @generated */ void setSelected(boolean value); /** * Returns the value of the 'Implies' reference list. * The list contents are of type {@link ua.ansymo.hintco.Alternative}. * *

* If the meaning of the 'Implies' reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Implies' reference list. * @see ua.ansymo.hintco.HintcoPackage#getAlternative_Implies() * @model * @generated */ EList getImplies(); } // Alternative