blob: badf003858d75681128bb3f07dbf3a7fd07f1989 [file] [log] [blame]
/**
* Copyright (c) 2013 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:
* Ansgar Radermacher - Initial API and implementation
*
*/
package org.eclipse.papyrus.designer.components.FCM;
import org.eclipse.uml2.uml.Interface;
import org.eclipse.uml2.uml.Type;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Port</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.designer.components.FCM.Port#getBase_Port <em>Base Port</em>}</li>
* <li>{@link org.eclipse.papyrus.designer.components.FCM.Port#getKind <em>Kind</em>}</li>
* <li>{@link org.eclipse.papyrus.designer.components.FCM.Port#getType <em>Type</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.designer.components.FCM.FCMPackage#getPort()
* @model
* @generated
*/
public interface Port extends ConfigurableElementInstance {
/**
* Returns the value of the '<em><b>Base Port</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Port</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Base Port</em>' reference.
* @see #setBase_Port(org.eclipse.uml2.uml.Port)
* @see org.eclipse.papyrus.designer.components.FCM.FCMPackage#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.designer.components.FCM.Port#getBase_Port <em>Base Port</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Port</em>' reference.
* @see #getBase_Port()
* @generated
*/
void setBase_Port(org.eclipse.uml2.uml.Port value);
/**
* Returns the value of the '<em><b>Kind</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Kind</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Kind</em>' reference.
* @see #setKind(PortKind)
* @see org.eclipse.papyrus.designer.components.FCM.FCMPackage#getPort_Kind()
* @model ordered="false"
* @generated
*/
PortKind getKind();
/**
* Sets the value of the '{@link org.eclipse.papyrus.designer.components.FCM.Port#getKind <em>Kind</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Kind</em>' reference.
* @see #getKind()
* @generated
*/
void setKind(PortKind value);
/**
* Returns the value of the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' reference.
* @see #setType(Type)
* @see org.eclipse.papyrus.designer.components.FCM.FCMPackage#getPort_Type()
* @model required="true" ordered="false"
* @generated
*/
Type getType();
/**
* Sets the value of the '{@link org.eclipse.papyrus.designer.components.FCM.Port#getType <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' reference.
* @see #getType()
* @generated
*/
void setType(Type value);
/**
* Update the derived interfaces of a port. Manually added method
*/
void update();
} // Port