/** */ package org.eclipse.papyrus.RobotML; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Port'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.RobotML.RobotMLPackage#getPort() * @model abstract="true" * @generated */ public interface Port extends EObject { /** * 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(org.eclipse.uml2.uml.Port) * @see org.eclipse.papyrus.RobotML.RobotMLPackage#getPort_Base_Port() * @model required="true" ordered="false" * @generated */ org.eclipse.uml2.uml.Port getBase_Port(); /** * Sets the value of the '{@link org.eclipse.papyrus.RobotML.Port#getBase_Port Base Port}' reference. * * * * @param value * the new value of the 'Base Port' reference. * @see #getBase_Port() * @generated */ void setBase_Port(org.eclipse.uml2.uml.Port value); /** * Returns the value of the 'Synchronization Policy' attribute. * The literals are from the enumeration {@link org.eclipse.papyrus.RobotML.SynchronizationKind}. * *

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

* * * @return the value of the 'Synchronization Policy' attribute. * @see org.eclipse.papyrus.RobotML.SynchronizationKind * @see #setSynchronizationPolicy(SynchronizationKind) * @see org.eclipse.papyrus.RobotML.RobotMLPackage#getPort_SynchronizationPolicy() * @model required="true" ordered="false" * @generated */ SynchronizationKind getSynchronizationPolicy(); /** * Sets the value of the '{@link org.eclipse.papyrus.RobotML.Port#getSynchronizationPolicy Synchronization Policy}' attribute. * * * * @param value * the new value of the 'Synchronization Policy' attribute. * @see org.eclipse.papyrus.RobotML.SynchronizationKind * @see #getSynchronizationPolicy() * @generated */ void setSynchronizationPolicy(SynchronizationKind value); } // Port