/** * 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; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Scope</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.measurement.smm.Scope#getClass_ <em>Class</em>}</li> * <li>{@link net.certware.measurement.smm.Scope#isEnumerated <em>Enumerated</em>}</li> * <li>{@link net.certware.measurement.smm.Scope#getName <em>Name</em>}</li> * <li>{@link net.certware.measurement.smm.Scope#getMeasures <em>Measures</em>}</li> * <li>{@link net.certware.measurement.smm.Scope#getRecognizer <em>Recognizer</em>}</li> * </ul> * </p> * * @see net.certware.measurement.smm.SmmPackage#getScope() * @model * @generated */ public interface Scope extends SmmElement { /** * Returns the value of the '<em><b>Class</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Class</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Class</em>' attribute. * @see #setClass(String) * @see net.certware.measurement.smm.SmmPackage#getScope_Class() * @model required="true" * @generated */ String getClass_(); /** * Sets the value of the '{@link net.certware.measurement.smm.Scope#getClass_ <em>Class</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Class</em>' attribute. * @see #getClass_() * @generated */ void setClass(String value); /** * Returns the value of the '<em><b>Enumerated</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Enumerated</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Enumerated</em>' attribute. * @see #setEnumerated(boolean) * @see net.certware.measurement.smm.SmmPackage#getScope_Enumerated() * @model * @generated */ boolean isEnumerated(); /** * Sets the value of the '{@link net.certware.measurement.smm.Scope#isEnumerated <em>Enumerated</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Enumerated</em>' attribute. * @see #isEnumerated() * @generated */ void setEnumerated(boolean value); /** * 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 net.certware.measurement.smm.SmmPackage#getScope_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link net.certware.measurement.smm.Scope#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>Measures</b></em>' reference list. * The list contents are of type {@link net.certware.measurement.smm.Measure}. * It is bidirectional and its opposite is '{@link net.certware.measurement.smm.Measure#getScope <em>Scope</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Measures</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>Measures</em>' reference list. * @see net.certware.measurement.smm.SmmPackage#getScope_Measures() * @see net.certware.measurement.smm.Measure#getScope * @model opposite="scope" * @generated */ EList<Measure> getMeasures(); /** * Returns the value of the '<em><b>Recognizer</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Recognizer</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Recognizer</em>' attribute. * @see #setRecognizer(String) * @see net.certware.measurement.smm.SmmPackage#getScope_Recognizer() * @model * @generated */ String getRecognizer(); /** * Sets the value of the '{@link net.certware.measurement.smm.Scope#getRecognizer <em>Recognizer</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Recognizer</em>' attribute. * @see #getRecognizer() * @generated */ void setRecognizer(String value); } // Scope