blob: 93b3015f031db469678b3abe885f939979937811 [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: ObjectFlow.java,v 1.7 2005/05/18 16:38:30 khussey Exp $
*/
package org.eclipse.uml2;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Object Flow</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.ObjectFlow#isMulticast <em>Is Multicast</em>}</li>
* <li>{@link org.eclipse.uml2.ObjectFlow#isMultireceive <em>Is Multireceive</em>}</li>
* <li>{@link org.eclipse.uml2.ObjectFlow#getTransformation <em>Transformation</em>}</li>
* <li>{@link org.eclipse.uml2.ObjectFlow#getSelection <em>Selection</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.UML2Package#getObjectFlow()
* @model
* @generated
*/
public interface ObjectFlow extends ActivityEdge{
/**
* <!-- 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>Is Multicast</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Is Multicast</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Is Multicast</em>' attribute.
* @see #setIsMulticast(boolean)
* @see org.eclipse.uml2.UML2Package#getObjectFlow_IsMulticast()
* @model default="false" dataType="org.eclipse.uml2.Boolean"
* @generated
*/
boolean isMulticast();
/**
* Sets the value of the '{@link org.eclipse.uml2.ObjectFlow#isMulticast <em>Is Multicast</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Is Multicast</em>' attribute.
* @see #isMulticast()
* @generated
*/
void setIsMulticast(boolean value);
/**
* Returns the value of the '<em><b>Is Multireceive</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Is Multireceive</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Is Multireceive</em>' attribute.
* @see #setIsMultireceive(boolean)
* @see org.eclipse.uml2.UML2Package#getObjectFlow_IsMultireceive()
* @model default="false" dataType="org.eclipse.uml2.Boolean"
* @generated
*/
boolean isMultireceive();
/**
* Sets the value of the '{@link org.eclipse.uml2.ObjectFlow#isMultireceive <em>Is Multireceive</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Is Multireceive</em>' attribute.
* @see #isMultireceive()
* @generated
*/
void setIsMultireceive(boolean value);
/**
* Returns the value of the '<em><b>Transformation</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Transformation</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Changes or replaces data tokens flowing along edge.
* <!-- end-model-doc -->
* @return the value of the '<em>Transformation</em>' reference.
* @see #setTransformation(Behavior)
* @see org.eclipse.uml2.UML2Package#getObjectFlow_Transformation()
* @model
* @generated
*/
Behavior getTransformation();
/**
* Sets the value of the '{@link org.eclipse.uml2.ObjectFlow#getTransformation <em>Transformation</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Transformation</em>' reference.
* @see #getTransformation()
* @generated
*/
void setTransformation(Behavior value);
/**
* Returns the value of the '<em><b>Selection</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Selection</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Selects tokens from a source object node.
* <!-- end-model-doc -->
* @return the value of the '<em>Selection</em>' reference.
* @see #setSelection(Behavior)
* @see org.eclipse.uml2.UML2Package#getObjectFlow_Selection()
* @model
* @generated
*/
Behavior getSelection();
/**
* Sets the value of the '{@link org.eclipse.uml2.ObjectFlow#getSelection <em>Selection</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Selection</em>' reference.
* @see #getSelection()
* @generated
*/
void setSelection(Behavior value);
} // ObjectFlow