aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/satellite/ConstellationMission.java
blob: 82efd31c2846aa80d978d3dffd0edc3bda1ed68f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
 */
package satellite;

import org.eclipse.emf.common.util.EList;

import org.eclipse.emf.ecore.EObject;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Constellation Mission</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link satellite.ConstellationMission#getGroundStationNetwork <em>Ground Station Network</em>}</li>
 *   <li>{@link satellite.ConstellationMission#getSpacecraft <em>Spacecraft</em>}</li>
 * </ul>
 *
 * @see satellite.SatellitePackage#getConstellationMission()
 * @model abstract="true"
 * @generated
 */
public interface ConstellationMission extends EObject {
	/**
	 * Returns the value of the '<em><b>Ground Station Network</b></em>' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Ground Station Network</em>' containment reference.
	 * @see #setGroundStationNetwork(GroundStationNetwork)
	 * @see satellite.SatellitePackage#getConstellationMission_GroundStationNetwork()
	 * @model containment="true" required="true"
	 * @generated
	 */
	GroundStationNetwork getGroundStationNetwork();

	/**
	 * Sets the value of the '{@link satellite.ConstellationMission#getGroundStationNetwork <em>Ground Station Network</em>}' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Ground Station Network</em>' containment reference.
	 * @see #getGroundStationNetwork()
	 * @generated
	 */
	void setGroundStationNetwork(GroundStationNetwork value);

	/**
	 * Returns the value of the '<em><b>Spacecraft</b></em>' containment reference list.
	 * The list contents are of type {@link satellite.Spacecraft}.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Spacecraft</em>' containment reference list.
	 * @see satellite.SatellitePackage#getConstellationMission_Spacecraft()
	 * @model containment="true" lower="2"
	 * @generated
	 */
	EList<Spacecraft> getSpacecraft();

} // ConstellationMission