/** */ package org.opendaylight.nemo.tool.eclipse.plugin.editor; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Connection'. * * *

* The following features are supported: *

* * * @see org.opendaylight.nemo.tool.eclipse.plugin.editor.EditorPackage#getConnection() * @model * @generated */ public interface Connection extends Sentence { /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.opendaylight.nemo.tool.eclipse.plugin.editor.EditorPackage#getConnection_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.opendaylight.nemo.tool.eclipse.plugin.editor.Connection#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Endnode' reference list. * The list contents are of type {@link org.opendaylight.nemo.tool.eclipse.plugin.editor.Node}. * *

* If the meaning of the 'Endnode' reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Endnode' reference list. * @see org.opendaylight.nemo.tool.eclipse.plugin.editor.EditorPackage#getConnection_Endnode() * @model * @generated */ EList getEndnode(); } // Connection