blob: 420f881e81fb0ec90f6e2630d4f2d1e0a00b83cd [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.emf.ecore.EObject;
import org.eclipse.uml2.uml.Interface;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Port Kind</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.designer.components.FCM.PortKind#getBase_Class <em>Base Class</em>}</li>
* <li>{@link org.eclipse.papyrus.designer.components.FCM.PortKind#getProvidedInterface <em>Provided Interface</em>}</li>
* <li>{@link org.eclipse.papyrus.designer.components.FCM.PortKind#getRequiredInterface <em>Required Interface</em>}</li>
* <li>{@link org.eclipse.papyrus.designer.components.FCM.PortKind#isExtendedPort <em>Extended Port</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.designer.components.FCM.FCMPackage#getPortKind()
* @model
* @generated
*/
public interface PortKind extends EObject {
/**
* Returns the value of the '<em><b>Base Class</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Class</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 Class</em>' reference.
* @see #setBase_Class(org.eclipse.uml2.uml.Class)
* @see org.eclipse.papyrus.designer.components.FCM.FCMPackage#getPortKind_Base_Class()
* @model required="true" ordered="false"
* @generated
*/
org.eclipse.uml2.uml.Class getBase_Class();
/**
* Sets the value of the '{@link org.eclipse.papyrus.designer.components.FCM.PortKind#getBase_Class <em>Base Class</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Class</em>' reference.
* @see #getBase_Class()
* @generated
*/
void setBase_Class(org.eclipse.uml2.uml.Class value);
/**
* Returns the value of the '<em><b>Provided Interface</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Provided Interface</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Provided Interface</em>' reference.
* @see #setProvidedInterface(Interface)
* @see org.eclipse.papyrus.designer.components.FCM.FCMPackage#getPortKind_ProvidedInterface()
* @model ordered="false"
* @generated
*/
Interface getProvidedInterface();
/**
* Sets the value of the '{@link org.eclipse.papyrus.designer.components.FCM.PortKind#getProvidedInterface <em>Provided Interface</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Provided Interface</em>' reference.
* @see #getProvidedInterface()
* @generated
*/
void setProvidedInterface(Interface value);
/**
* Returns the value of the '<em><b>Required Interface</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Required Interface</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Required Interface</em>' reference.
* @see #setRequiredInterface(Interface)
* @see org.eclipse.papyrus.designer.components.FCM.FCMPackage#getPortKind_RequiredInterface()
* @model ordered="false"
* @generated
*/
Interface getRequiredInterface();
/**
* Sets the value of the '{@link org.eclipse.papyrus.designer.components.FCM.PortKind#getRequiredInterface <em>Required Interface</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Required Interface</em>' reference.
* @see #getRequiredInterface()
* @generated
*/
void setRequiredInterface(Interface value);
/**
* Returns the value of the '<em><b>Extended Port</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Extended Port</em>' attribute isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Extended Port</em>' attribute.
* @see #isSetExtendedPort()
* @see org.eclipse.papyrus.designer.components.FCM.FCMPackage#getPortKind_ExtendedPort()
* @model unsettable="true" dataType="org.eclipse.uml2.types.Boolean" required="true" transient="true" changeable="false" volatile="true" derived="true" ordered="false"
* @generated
*/
boolean isExtendedPort();
/**
* Returns whether the value of the '{@link org.eclipse.papyrus.designer.components.FCM.PortKind#isExtendedPort <em>Extended Port</em>}' attribute is set.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return whether the value of the '<em>Extended Port</em>' attribute is set.
* @see #isExtendedPort()
* @generated
*/
boolean isSetExtendedPort();
} // PortKind