blob: 435fe72ca8f8c9cb440f7542e049b0aef3690a26 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2008 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
* *******************************************************************************
*
* $Id$
*/
package org.eclipse.gmt.modisco.omg.kdm.action;
import org.eclipse.emf.common.util.EList;
import org.eclipse.gmt.modisco.omg.kdm.code.AbstractCodeElement;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.gmt.modisco.omg.kdm.action.ActionElement#getKind <em>Kind</em>}</li>
* <li>{@link org.eclipse.gmt.modisco.omg.kdm.action.ActionElement#getCodeElement <em>Code Element</em>}</li>
* <li>{@link org.eclipse.gmt.modisco.omg.kdm.action.ActionElement#getActionRelation <em>Action Relation</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.gmt.modisco.omg.kdm.action.ActionPackage#getActionElement()
* @model
* @generated
*/
public interface ActionElement extends AbstractCodeElement {
/**
* Returns the value of the '<em><b>Kind</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Kind</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Kind</em>' attribute.
* @see #setKind(String)
* @see org.eclipse.gmt.modisco.omg.kdm.action.ActionPackage#getActionElement_Kind()
* @model dataType="org.eclipse.gmt.modisco.omg.kdm.core.String"
* @generated
*/
String getKind();
/**
* Sets the value of the '{@link org.eclipse.gmt.modisco.omg.kdm.action.ActionElement#getKind <em>Kind</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Kind</em>' attribute.
* @see #getKind()
* @generated
*/
void setKind(String 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.action.ActionPackage#getActionElement_CodeElement()
* @model containment="true" ordered="false"
* @generated
*/
EList<AbstractCodeElement> getCodeElement();
/**
* Returns the value of the '<em><b>Action Relation</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.gmt.modisco.omg.kdm.action.AbstractActionRelationship}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Action Relation</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>Action Relation</em>' containment reference list.
* @see org.eclipse.gmt.modisco.omg.kdm.action.ActionPackage#getActionElement_ActionRelation()
* @model containment="true"
* @generated
*/
EList<AbstractActionRelationship> getActionRelation();
} // ActionElement