/** */ package hu.bme.mit.inf.dslreasoner.domains.satellite; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Communicating Element'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.domains.satellite.SatellitePackage#getCommunicatingElement() * @model abstract="true" * @generated */ public interface CommunicatingElement extends EObject { /** * Returns the value of the 'Comm Subsystem' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.domains.satellite.CommSubsystem}. * *

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

* * @return the value of the 'Comm Subsystem' containment reference list. * @see hu.bme.mit.inf.dslreasoner.domains.satellite.SatellitePackage#getCommunicatingElement_CommSubsystem() * @model containment="true" required="true" upper="2" * @generated */ EList getCommSubsystem(); /** * Returns the value of the 'Communication Link' containment reference. * *

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

* * @return the value of the 'Communication Link' containment reference. * @see #setCommunicationLink(DirectedCommunicationLink) * @see hu.bme.mit.inf.dslreasoner.domains.satellite.SatellitePackage#getCommunicatingElement_CommunicationLink() * @model containment="true" * @generated */ DirectedCommunicationLink getCommunicationLink(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.satellite.CommunicatingElement#getCommunicationLink Communication Link}' containment reference. * * * @param value the new value of the 'Communication Link' containment reference. * @see #getCommunicationLink() * @generated */ void setCommunicationLink(DirectedCommunicationLink value); } // CommunicatingElement