/** */ package satellite; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Comm Subsystem'. * * *

* The following features are supported: *

* * * @see satellite.SatellitePackage#getCommSubsystem() * @model abstract="true" * @generated */ public interface CommSubsystem extends EObject { /** * Returns the value of the 'Target' reference. * It is bidirectional and its opposite is '{@link satellite.CommSubsystem#getSource Source}'. * * * @return the value of the 'Target' reference. * @see #setTarget(CommSubsystem) * @see satellite.SatellitePackage#getCommSubsystem_Target() * @see satellite.CommSubsystem#getSource * @model opposite="source" * @generated */ CommSubsystem getTarget(); /** * Sets the value of the '{@link satellite.CommSubsystem#getTarget Target}' reference. * * * @param value the new value of the 'Target' reference. * @see #getTarget() * @generated */ void setTarget(CommSubsystem value); /** * Returns the value of the 'Source' reference list. * The list contents are of type {@link satellite.CommSubsystem}. * It is bidirectional and its opposite is '{@link satellite.CommSubsystem#getTarget Target}'. * * * @return the value of the 'Source' reference list. * @see satellite.SatellitePackage#getCommSubsystem_Source() * @see satellite.CommSubsystem#getTarget * @model opposite="target" * @generated */ EList getSource(); } // CommSubsystem