blob: 614ed346aceb64ea68458dae680f6ea1cde7e0ed [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 Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM - initial API and implementation
*
* $Id: ActivityParameterNode.java,v 1.6 2005/05/18 16:38:30 khussey Exp $
*/
package org.eclipse.uml2;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Activity Parameter Node</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Activity parameters are object nodes at the beginning and end of flows, to accept inputs to an activity and provide outputs from it. (CompleteActivities) Activity parameters inherit support for streaming and exceptions from Parameter.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.ActivityParameterNode#getParameter <em>Parameter</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.UML2Package#getActivityParameterNode()
* @model
* @generated
*/
public interface ActivityParameterNode extends ObjectNode{
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright (c) IBM Corporation and others."; //$NON-NLS-1$
/**
* Returns the value of the '<em><b>Parameter</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Parameter</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The parameter the object node will be accepting and providing values for.
* <!-- end-model-doc -->
* @return the value of the '<em>Parameter</em>' reference.
* @see #setParameter(Parameter)
* @see org.eclipse.uml2.UML2Package#getActivityParameterNode_Parameter()
* @model required="true"
* @generated
*/
Parameter getParameter();
/**
* Sets the value of the '{@link org.eclipse.uml2.ActivityParameterNode#getParameter <em>Parameter</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Parameter</em>' reference.
* @see #getParameter()
* @generated
*/
void setParameter(Parameter value);
} // ActivityParameterNode