/** */ 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 'Constellation Mission'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.domains.satellite.SatellitePackage#getConstellationMission() * @model abstract="true" * @generated */ public interface ConstellationMission extends EObject { /** * Returns the value of the 'Ground Station Network' containment reference. * *

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

* * @return the value of the 'Ground Station Network' containment reference. * @see #setGroundStationNetwork(GroundStationNetwork) * @see hu.bme.mit.inf.dslreasoner.domains.satellite.SatellitePackage#getConstellationMission_GroundStationNetwork() * @model containment="true" required="true" * @generated */ GroundStationNetwork getGroundStationNetwork(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.satellite.ConstellationMission#getGroundStationNetwork Ground Station Network}' containment reference. * * * @param value the new value of the 'Ground Station Network' containment reference. * @see #getGroundStationNetwork() * @generated */ void setGroundStationNetwork(GroundStationNetwork value); /** * Returns the value of the 'Spacecraft' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.domains.satellite.Spacecraft}. * *

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

* * @return the value of the 'Spacecraft' containment reference list. * @see hu.bme.mit.inf.dslreasoner.domains.satellite.SatellitePackage#getConstellationMission_Spacecraft() * @model containment="true" lower="2" upper="50" * @generated */ EList getSpacecraft(); } // ConstellationMission