blob: fa6b5ed7850b0587bbefcbc2cfbe630725a801c1 [file] [log] [blame]
/**
*/
package comps;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- 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 comps.Port#getName <em>Name</em>}</li>
* <li>{@link comps.Port#getOutgoing <em>Outgoing</em>}</li>
* <li>{@link comps.Port#getIncoming <em>Incoming</em>}</li>
* </ul>
*
* @see comps.CompsPackage#getPort()
* @model
* @generated
*/
public interface Port extends EObject {
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see comps.CompsPackage#getPort_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link comps.Port#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Outgoing</b></em>' reference list.
* The list contents are of type {@link comps.Connector}.
* It is bidirectional and its opposite is '{@link comps.Connector#getFrom <em>From</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Outgoing</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Outgoing</em>' reference list.
* @see comps.CompsPackage#getPort_Outgoing()
* @see comps.Connector#getFrom
* @model opposite="from"
* @generated
*/
EList<Connector> getOutgoing();
/**
* Returns the value of the '<em><b>Incoming</b></em>' reference list.
* The list contents are of type {@link comps.Connector}.
* It is bidirectional and its opposite is '{@link comps.Connector#getTo <em>To</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Incoming</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Incoming</em>' reference list.
* @see comps.CompsPackage#getPort_Incoming()
* @see comps.Connector#getTo
* @model opposite="to"
* @generated
*/
EList<Connector> getIncoming();
} // Port