/** * Copyright (c) 2010 Object Management Group (SMM metamodel) * Copyright (c) 2010 Castor Technology (ecore from schema, Eclipse GMT MODISCO) * Kestrel Technology LLC (modified generated models) */ package net.certware.measurement.smm; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Grade</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.measurement.smm.Grade#getBaseMeasurement <em>Base Measurement</em>}</li> * <li>{@link net.certware.measurement.smm.Grade#isIsBaseSupplied <em>Is Base Supplied</em>}</li> * <li>{@link net.certware.measurement.smm.Grade#getValue <em>Value</em>}</li> * </ul> * </p> * * @see net.certware.measurement.smm.SmmPackage#getGrade() * @model * @generated */ public interface Grade extends Measurement { /** * Returns the value of the '<em><b>Base Measurement</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Base Measurement</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Base Measurement</em>' reference. * @see #setBaseMeasurement(DimensionalMeasurement) * @see net.certware.measurement.smm.SmmPackage#getGrade_BaseMeasurement() * @model * @generated */ DimensionalMeasurement getBaseMeasurement(); /** * Sets the value of the '{@link net.certware.measurement.smm.Grade#getBaseMeasurement <em>Base Measurement</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Base Measurement</em>' reference. * @see #getBaseMeasurement() * @generated */ void setBaseMeasurement(DimensionalMeasurement value); /** * Returns the value of the '<em><b>Is Base Supplied</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Is Base Supplied</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Is Base Supplied</em>' attribute. * @see #setIsBaseSupplied(boolean) * @see net.certware.measurement.smm.SmmPackage#getGrade_IsBaseSupplied() * @model required="true" * @generated */ boolean isIsBaseSupplied(); /** * Sets the value of the '{@link net.certware.measurement.smm.Grade#isIsBaseSupplied <em>Is Base Supplied</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Is Base Supplied</em>' attribute. * @see #isIsBaseSupplied() * @generated */ void setIsBaseSupplied(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(String) * @see net.certware.measurement.smm.SmmPackage#getGrade_Value() * @model * @generated */ String getValue(); /** * Sets the value of the '{@link net.certware.measurement.smm.Grade#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(String value); } // Grade