blob: b186e7c29af40b1aee66c2816a348bf04740a8c3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 SAP AG and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* SAP AG - initial API and implementation
******************************************************************************
*/
package behavioral.status_and_action.assembly;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Connector</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link behavioral.status_and_action.assembly.Connector#getSource <em>Source</em>}</li>
* <li>{@link behavioral.status_and_action.assembly.Connector#getTarget <em>Target</em>}</li>
* </ul>
* </p>
*
* @see behavioral.status_and_action.assembly.AssemblyPackage#getConnector()
* @model abstract="true"
* @generated
*/
public interface Connector extends SchemaElement {
/**
* Returns the value of the '<em><b>Source</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Source</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Source</em>' reference.
* @see #setSource(ConnectableElement)
* @see behavioral.status_and_action.assembly.AssemblyPackage#getConnector_Source()
* @model required="true"
* annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml Property.oppositeRoleName='outgoing'"
* @generated
*/
ConnectableElement getSource();
/**
* Sets the value of the '{@link behavioral.status_and_action.assembly.Connector#getSource <em>Source</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Source</em>' reference.
* @see #getSource()
* @generated
*/
void setSource(ConnectableElement value);
/**
* Returns the value of the '<em><b>Target</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Target</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Target</em>' reference.
* @see #setTarget(ConnectableElement)
* @see behavioral.status_and_action.assembly.AssemblyPackage#getConnector_Target()
* @model required="true"
* annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml Property.oppositeRoleName='incoming'"
* @generated
*/
ConnectableElement getTarget();
/**
* Sets the value of the '{@link behavioral.status_and_action.assembly.Connector#getTarget <em>Target</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Target</em>' reference.
* @see #getTarget()
* @generated
*/
void setTarget(ConnectableElement value);
} // Connector