/** */ package hu.bme.mit.inf.dslreasoner.domains.satellite; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Directed Communication Link'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.domains.satellite.SatellitePackage#getDirectedCommunicationLink() * @model * @generated */ public interface DirectedCommunicationLink extends EObject { /** * Returns the value of the 'Source' reference. * *

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

* * @return the value of the 'Source' reference. * @see #setSource(CommSubsystem) * @see hu.bme.mit.inf.dslreasoner.domains.satellite.SatellitePackage#getDirectedCommunicationLink_Source() * @model required="true" * @generated */ CommSubsystem getSource(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.satellite.DirectedCommunicationLink#getSource Source}' reference. * * * @param value the new value of the 'Source' reference. * @see #getSource() * @generated */ void setSource(CommSubsystem value); /** * Returns the value of the 'Target' reference. * *

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

* * @return the value of the 'Target' reference. * @see #setTarget(CommSubsystem) * @see hu.bme.mit.inf.dslreasoner.domains.satellite.SatellitePackage#getDirectedCommunicationLink_Target() * @model required="true" * @generated */ CommSubsystem getTarget(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.satellite.DirectedCommunicationLink#getTarget Target}' reference. * * * @param value the new value of the 'Target' reference. * @see #getTarget() * @generated */ void setTarget(CommSubsystem value); } // DirectedCommunicationLink