/** * 2014 Urs Zeidler */ package de.urszeidler.eclipse.shr5; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Magische Stufe</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * This is the basic magical rating class. * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link de.urszeidler.eclipse.shr5.MagischeStufe#getStufe <em>Stufe</em>}</li> * </ul> * </p> * * @see de.urszeidler.eclipse.shr5.Shr5Package#getMagischeStufe() * @model interface="true" abstract="true" * @generated */ public interface MagischeStufe extends EObject { /** * Returns the value of the '<em><b>Stufe</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Stufe</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Stufe</em>' attribute. * @see #setStufe(int) * @see de.urszeidler.eclipse.shr5.Shr5Package#getMagischeStufe_Stufe() * @model * @generated */ int getStufe(); /** * Sets the value of the '{@link de.urszeidler.eclipse.shr5.MagischeStufe#getStufe <em>Stufe</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Stufe</em>' attribute. * @see #getStufe() * @generated */ void setStufe(int value); } // MagischeStufe