/***************************************************************************** * Copyright (c) 2013, 2014 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: * Camille Letavernier (CEA LIST) camille.letavernier@cea.fr - Initial API and implementation *****************************************************************************/ package org.eclipse.papyrus.migration.rsa.umlrt; import org.eclipse.emf.ecore.EObject; import org.eclipse.uml2.uml.Port; /** * * A representation of the model object 'RT Port'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.migration.rsa.umlrt.UMLRealTimePackage#getRTPort() * @model * @generated */ public interface RTPort 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(Port) * @see org.eclipse.papyrus.migration.rsa.umlrt.UMLRealTimePackage#getRTPort_Base_Port() * @model required="true" * @generated */ Port getBase_Port(); /** * Sets the value of the '{@link org.eclipse.papyrus.migration.rsa.umlrt.RTPort#getBase_Port Base Port}' reference. * * * * @param value * the new value of the 'Base Port' reference. * @see #getBase_Port() * @generated */ void setBase_Port(Port value); /** * Returns the value of the 'Is Conjugate' attribute. * *

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

* * * @return the value of the 'Is Conjugate' attribute. * @see #setIsConjugate(boolean) * @see org.eclipse.papyrus.migration.rsa.umlrt.UMLRealTimePackage#getRTPort_IsConjugate() * @model * @generated */ boolean isIsConjugate(); /** * Sets the value of the '{@link org.eclipse.papyrus.migration.rsa.umlrt.RTPort#isIsConjugate Is Conjugate}' attribute. * * * * @param value * the new value of the 'Is Conjugate' attribute. * @see #isIsConjugate() * @generated */ void setIsConjugate(boolean value); /** * Returns the value of the 'Is Notification' attribute. * *

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

* * * @return the value of the 'Is Notification' attribute. * @see #setIsNotification(boolean) * @see org.eclipse.papyrus.migration.rsa.umlrt.UMLRealTimePackage#getRTPort_IsNotification() * @model * @generated */ boolean isIsNotification(); /** * Sets the value of the '{@link org.eclipse.papyrus.migration.rsa.umlrt.RTPort#isIsNotification Is Notification}' attribute. * * * * @param value * the new value of the 'Is Notification' attribute. * @see #isIsNotification() * @generated */ void setIsNotification(boolean value); /** * Returns the value of the 'Is Publish' attribute. * *

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

* * * @return the value of the 'Is Publish' attribute. * @see #setIsPublish(boolean) * @see org.eclipse.papyrus.migration.rsa.umlrt.UMLRealTimePackage#getRTPort_IsPublish() * @model * @generated */ boolean isIsPublish(); /** * Sets the value of the '{@link org.eclipse.papyrus.migration.rsa.umlrt.RTPort#isIsPublish Is Publish}' attribute. * * * * @param value * the new value of the 'Is Publish' attribute. * @see #isIsPublish() * @generated */ void setIsPublish(boolean value); /** * Returns the value of the 'Is Wired' attribute. * The default value is "true". * *

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

* * * @return the value of the 'Is Wired' attribute. * @see #setIsWired(boolean) * @see org.eclipse.papyrus.migration.rsa.umlrt.UMLRealTimePackage#getRTPort_IsWired() * @model default="true" * @generated */ boolean isIsWired(); /** * Sets the value of the '{@link org.eclipse.papyrus.migration.rsa.umlrt.RTPort#isIsWired Is Wired}' attribute. * * * * @param value * the new value of the 'Is Wired' attribute. * @see #isIsWired() * @generated */ void setIsWired(boolean value); /** * Returns the value of the 'Registration' attribute. * The default value is "Automatic". * The literals are from the enumeration {@link org.eclipse.papyrus.migration.rsa.umlrt.PortRegistrationType}. * *

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

* * * @return the value of the 'Registration' attribute. * @see org.eclipse.papyrus.migration.rsa.umlrt.PortRegistrationType * @see #setRegistration(PortRegistrationType) * @see org.eclipse.papyrus.migration.rsa.umlrt.UMLRealTimePackage#getRTPort_Registration() * @model default="Automatic" * @generated */ PortRegistrationType getRegistration(); /** * Sets the value of the '{@link org.eclipse.papyrus.migration.rsa.umlrt.RTPort#getRegistration Registration}' attribute. * * * * @param value * the new value of the 'Registration' attribute. * @see org.eclipse.papyrus.migration.rsa.umlrt.PortRegistrationType * @see #getRegistration() * @generated */ void setRegistration(PortRegistrationType value); /** * Returns the value of the 'Registration Override' attribute. * *

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

* * * @return the value of the 'Registration Override' attribute. * @see #setRegistrationOverride(String) * @see org.eclipse.papyrus.migration.rsa.umlrt.UMLRealTimePackage#getRTPort_RegistrationOverride() * @model * @generated */ String getRegistrationOverride(); /** * Sets the value of the '{@link org.eclipse.papyrus.migration.rsa.umlrt.RTPort#getRegistrationOverride Registration Override}' attribute. * * * * @param value * the new value of the 'Registration Override' attribute. * @see #getRegistrationOverride() * @generated */ void setRegistrationOverride(String value); } // RTPort