/***************************************************************************** * Copyright (c) 2010 CEA LIST. * * * 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: * Chokri MRAIDHA (CEA LIST) chokri.mraidha@cea.fr - Initial API and implementation * *****************************************************************************/ package org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM; import org.eclipse.emf.ecore.EObject; import org.eclipse.uml2.uml.Port; /** * * A representation of the model object 'Flow Port'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.GCMPackage#getFlowPort() * @model * @generated */ public interface FlowPort extends EObject { /** * Returns the value of the 'Is Atomic' attribute. * *

* If the meaning of the 'Is Atomic' attribute isn't clear, there really should be more of a description here... *

* * * @return the value of the 'Is Atomic' attribute. * @see #setIsAtomic(boolean) * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.GCMPackage#getFlowPort_IsAtomic() * @model unique="false" dataType="org.eclipse.papyrus.MARTE_Library.MARTE_PrimitivesTypes.Boolean" required="true" transient="true" volatile="true" derived="true" ordered="false" * @generated */ boolean isIsAtomic(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.FlowPort#isIsAtomic Is Atomic}' attribute. * * * * @param value * the new value of the 'Is Atomic' attribute. * @see #isIsAtomic() * @generated */ void setIsAtomic(boolean value); /** * Returns the value of the 'Direction' attribute. * The default value is "inout". * The literals are from the enumeration {@link org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.FlowDirectionKind}. * *

* If the meaning of the 'Direction' attribute isn't clear, there really should be more of a description here... *

* * * @return the value of the 'Direction' attribute. * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.FlowDirectionKind * @see #setDirection(FlowDirectionKind) * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.GCMPackage#getFlowPort_Direction() * @model default="inout" unique="false" required="true" ordered="false" * @generated */ FlowDirectionKind getDirection(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.FlowPort#getDirection Direction}' attribute. * * * * @param value * the new value of the 'Direction' attribute. * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.FlowDirectionKind * @see #getDirection() * @generated */ void setDirection(FlowDirectionKind value); /** * Returns the value of the 'Base Port' reference. * *

* If the meaning of the 'Base Port' reference isn't clear, there really should be more of a description here... *

* * * @return the value of the 'Base Port' reference. * @see #setBase_Port(Port) * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.GCMPackage#getFlowPort_Base_Port() * @model required="true" ordered="false" * @generated */ Port getBase_Port(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.FlowPort#getBase_Port Base Port}' reference. * * * * @param value * the new value of the 'Base Port' reference. * @see #getBase_Port() * @generated */ void setBase_Port(Port value); } // FlowPort