aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/satellite/Spacecraft.java
blob: 4dd773294703b174b0d18a05f7a7abf87465e3b8 (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
/**
 */
package satellite;


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Spacecraft</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link satellite.Spacecraft#getPayload <em>Payload</em>}</li>
 * </ul>
 *
 * @see satellite.SatellitePackage#getSpacecraft()
 * @model abstract="true"
 * @generated
 */
public interface Spacecraft extends CommunicatingElement {
	/**
	 * Returns the value of the '<em><b>Payload</b></em>' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Payload</em>' containment reference.
	 * @see #setPayload(Payload)
	 * @see satellite.SatellitePackage#getSpacecraft_Payload()
	 * @model containment="true"
	 * @generated
	 */
	Payload getPayload();

	/**
	 * Sets the value of the '{@link satellite.Spacecraft#getPayload <em>Payload</em>}' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Payload</em>' containment reference.
	 * @see #getPayload()
	 * @generated
	 */
	void setPayload(Payload value);

} // Spacecraft