blob: ef46f2e69c2a74c5d368503f229c330cd7bacf52 [file] [log] [blame]
/*
* Copyright (c) 2003, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM - Initial API and implementation
*
* $Id: AcceptEventAction.java,v 1.3 2004/05/11 15:24:00 khussey Exp $
*/
package org.eclipse.uml2;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Accept Event Action</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.AcceptEventAction#getTriggers <em>Trigger</em>}</li>
* <li>{@link org.eclipse.uml2.AcceptEventAction#getResults <em>Result</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.UML2Package#getAcceptEventAction()
* @model
* @generated
*/
public interface AcceptEventAction extends Action{
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright (c) 2003, 2004 IBM Corporation and others."; //$NON-NLS-1$
/**
* Returns the value of the '<em><b>Trigger</b></em>' reference list.
* The list contents are of type {@link org.eclipse.uml2.Trigger}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Trigger</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>Trigger</em>' reference list.
* @see org.eclipse.uml2.UML2Package#getAcceptEventAction_Trigger()
* @model type="org.eclipse.uml2.Trigger" volatile="true"
* @generated
*/
EList getTriggers();
/**
* Retrieves the {@link org.eclipse.uml2.Trigger} with the specified name from the '<em><b>Trigger</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param unqualifiedName The unqualified name of the {@link org.eclipse.uml2.Trigger} to retrieve.
* @return The {@link org.eclipse.uml2.Trigger} with the specified name, or <code>null</code>.
* @see #getTriggers()
* @generated
*/
Trigger getTrigger(String unqualifiedName);
/**
* Returns the value of the '<em><b>Result</b></em>' reference list.
* The list contents are of type {@link org.eclipse.uml2.OutputPin}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Result</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>Result</em>' reference list.
* @see org.eclipse.uml2.UML2Package#getAcceptEventAction_Result()
* @model type="org.eclipse.uml2.OutputPin" ordered="false"
* @generated
*/
EList getResults();
/**
* Retrieves the {@link org.eclipse.uml2.OutputPin} with the specified name from the '<em><b>Result</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param unqualifiedName The unqualified name of the {@link org.eclipse.uml2.OutputPin} to retrieve.
* @return The {@link org.eclipse.uml2.OutputPin} with the specified name, or <code>null</code>.
* @see #getResults()
* @generated
*/
OutputPin getResult(String unqualifiedName);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model parameters=""
* @generated
*/
EList getOutputs();
} // AcceptEventAction