/** */ package satellite; 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. * * * @return the value of the 'Target' reference. * @see #setTarget(CommSubsystem) * @see satellite.SatellitePackage#getCommSubsystem_Target() * @model * @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 'Frequency' attribute. * * * @return the value of the 'Frequency' attribute. * @see #setFrequency(int) * @see satellite.SatellitePackage#getCommSubsystem_Frequency() * @model required="true" * @generated */ int getFrequency(); /** * Sets the value of the '{@link satellite.CommSubsystem#getFrequency Frequency}' attribute. * * * @param value the new value of the 'Frequency' attribute. * @see #getFrequency() * @generated */ void setFrequency(int value); /** * Returns the value of the 'Path Length' attribute. * * * @return the value of the 'Path Length' attribute. * @see #setPathLength(int) * @see satellite.SatellitePackage#getCommSubsystem_PathLength() * @model required="true" * @generated */ int getPathLength(); /** * Sets the value of the '{@link satellite.CommSubsystem#getPathLength Path Length}' attribute. * * * @param value the new value of the 'Path Length' attribute. * @see #getPathLength() * @generated */ void setPathLength(int value); } // CommSubsystem