/** */ package com.robotoworks.mechanoid.net.netModel; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Enum Member</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link com.robotoworks.mechanoid.net.netModel.EnumMember#getName <em>Name</em>}</li> * <li>{@link com.robotoworks.mechanoid.net.netModel.EnumMember#isAssignment <em>Assignment</em>}</li> * <li>{@link com.robotoworks.mechanoid.net.netModel.EnumMember#getValue <em>Value</em>}</li> * </ul> * </p> * * @see com.robotoworks.mechanoid.net.netModel.NetModelPackage#getEnumMember() * @model * @generated */ public interface EnumMember extends EObject { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see com.robotoworks.mechanoid.net.netModel.NetModelPackage#getEnumMember_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link com.robotoworks.mechanoid.net.netModel.EnumMember#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Assignment</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Assignment</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Assignment</em>' attribute. * @see #setAssignment(boolean) * @see com.robotoworks.mechanoid.net.netModel.NetModelPackage#getEnumMember_Assignment() * @model * @generated */ boolean isAssignment(); /** * Sets the value of the '{@link com.robotoworks.mechanoid.net.netModel.EnumMember#isAssignment <em>Assignment</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Assignment</em>' attribute. * @see #isAssignment() * @generated */ void setAssignment(boolean value); /** * Returns the value of the '<em><b>Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Value</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Value</em>' attribute. * @see #setValue(int) * @see com.robotoworks.mechanoid.net.netModel.NetModelPackage#getEnumMember_Value() * @model * @generated */ int getValue(); /** * Sets the value of the '{@link com.robotoworks.mechanoid.net.netModel.EnumMember#getValue <em>Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Value</em>' attribute. * @see #getValue() * @generated */ void setValue(int value); } // EnumMember