blob: 5ad19f6dfca9c65d1e8f2f12142c4e823020de30 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2008, 2019 Castor Technologies Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Alain Picard (Castor Technologies Inc) - initial API and implementation
* *******************************************************************************
*
* $Id$
*/
package org.eclipse.gmt.modisco.omg.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 org.eclipse.gmt.modisco.omg.smm.Scope#getClass_ <em>Class</em>}</li>
* <li>{@link org.eclipse.gmt.modisco.omg.smm.Scope#isEnumerated <em>Enumerated</em>}</li>
* <li>{@link org.eclipse.gmt.modisco.omg.smm.Scope#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.gmt.modisco.omg.smm.Scope#getMeasures <em>Measures</em>}</li>
* <li>{@link org.eclipse.gmt.modisco.omg.smm.Scope#getRecognizer <em>Recognizer</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.gmt.modisco.omg.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 org.eclipse.gmt.modisco.omg.smm.SmmPackage#getScope_Class()
* @model required="true"
* @generated
*/
String getClass_();
/**
* Sets the value of the '{@link org.eclipse.gmt.modisco.omg.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 org.eclipse.gmt.modisco.omg.smm.SmmPackage#getScope_Enumerated()
* @model
* @generated
*/
boolean isEnumerated();
/**
* Sets the value of the '{@link org.eclipse.gmt.modisco.omg.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 org.eclipse.gmt.modisco.omg.smm.SmmPackage#getScope_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.gmt.modisco.omg.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 org.eclipse.gmt.modisco.omg.smm.Measure}.
* It is bidirectional and its opposite is '{@link org.eclipse.gmt.modisco.omg.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 org.eclipse.gmt.modisco.omg.smm.SmmPackage#getScope_Measures()
* @see org.eclipse.gmt.modisco.omg.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 org.eclipse.gmt.modisco.omg.smm.SmmPackage#getScope_Recognizer()
* @model
* @generated
*/
String getRecognizer();
/**
* Sets the value of the '{@link org.eclipse.gmt.modisco.omg.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