blob: eacd4bfbce0878a215ab9a9ed8232ad4f78e36a2 [file] [log] [blame]
/**
* Copyright (c) 2014 Fraunhofer FOKUS
* 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:
* Marc-Florian Wendland
*/
package org.eclipse.upr.soaml;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.uml2.uml.Connector;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Service Channel</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.upr.soaml.ServiceChannel#getBase_Connector <em>Base Connector</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.upr.soaml.SoaMLPackage#getServiceChannel()
* @model
* @generated
*/
public interface ServiceChannel extends EObject {
/**
* Returns the value of the '<em><b>Base Connector</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Connector</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 Connector</em>' reference.
* @see #setBase_Connector(Connector)
* @see org.eclipse.upr.soaml.SoaMLPackage#getServiceChannel_Base_Connector()
* @model required="true" ordered="false"
* @generated
*/
Connector getBase_Connector();
/**
* Sets the value of the '{@link org.eclipse.upr.soaml.ServiceChannel#getBase_Connector <em>Base Connector</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Connector</em>' reference.
* @see #getBase_Connector()
* @generated
*/
void setBase_Connector(Connector value);
} // ServiceChannel