blob: 2d2908c6a31ae24884a9cf7da9b66292d636be62 [file] [log] [blame]
/**
*
* Copyright (c) 2009 Hatha Systems.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Nikolai Mansourov (Hatha Systems) - initial API and implementation
* Gabriel Barbier (Mia-Software) - minor evolutions for version 1.1
*
* $Id$
*/
package org.eclipse.gmt.modisco.omg.kdm.code;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Control Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.gmt.modisco.omg.kdm.code.ControlElement#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.gmt.modisco.omg.kdm.code.ControlElement#getCodeElement <em>Code Element</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.gmt.modisco.omg.kdm.code.CodePackage#getControlElement()
* @model
* @generated
*/
public interface ControlElement extends ComputationalObject {
/**
* Returns the value of the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' reference.
* @see #setType(Datatype)
* @see org.eclipse.gmt.modisco.omg.kdm.code.CodePackage#getControlElement_Type()
* @model ordered="false"
* @generated
*/
Datatype getType();
/**
* Sets the value of the '{@link org.eclipse.gmt.modisco.omg.kdm.code.ControlElement#getType <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' reference.
* @see #getType()
* @generated
*/
void setType(Datatype value);
/**
* Returns the value of the '<em><b>Code Element</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.gmt.modisco.omg.kdm.code.AbstractCodeElement}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Code Element</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Code Element</em>' containment reference list.
* @see org.eclipse.gmt.modisco.omg.kdm.code.CodePackage#getControlElement_CodeElement()
* @model containment="true"
* @generated
*/
EList<AbstractCodeElement> getCodeElement();
} // ControlElement