aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/satellite/CommSubsystem.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/satellite/CommSubsystem.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/satellite/CommSubsystem.java92
1 files changed, 92 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/satellite/CommSubsystem.java b/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/satellite/CommSubsystem.java
new file mode 100644
index 00000000..905f5c3c
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/satellite/CommSubsystem.java
@@ -0,0 +1,92 @@
1/**
2 */
3package satellite;
4
5import org.eclipse.emf.ecore.EObject;
6
7/**
8 * <!-- begin-user-doc -->
9 * A representation of the model object '<em><b>Comm Subsystem</b></em>'.
10 * <!-- end-user-doc -->
11 *
12 * <p>
13 * The following features are supported:
14 * </p>
15 * <ul>
16 * <li>{@link satellite.CommSubsystem#getTarget <em>Target</em>}</li>
17 * <li>{@link satellite.CommSubsystem#getFrequency <em>Frequency</em>}</li>
18 * <li>{@link satellite.CommSubsystem#getPathLength <em>Path Length</em>}</li>
19 * </ul>
20 *
21 * @see satellite.SatellitePackage#getCommSubsystem()
22 * @model abstract="true"
23 * @generated
24 */
25public interface CommSubsystem extends EObject {
26 /**
27 * Returns the value of the '<em><b>Target</b></em>' reference.
28 * <!-- begin-user-doc -->
29 * <!-- end-user-doc -->
30 * @return the value of the '<em>Target</em>' reference.
31 * @see #setTarget(CommSubsystem)
32 * @see satellite.SatellitePackage#getCommSubsystem_Target()
33 * @model
34 * @generated
35 */
36 CommSubsystem getTarget();
37
38 /**
39 * Sets the value of the '{@link satellite.CommSubsystem#getTarget <em>Target</em>}' reference.
40 * <!-- begin-user-doc -->
41 * <!-- end-user-doc -->
42 * @param value the new value of the '<em>Target</em>' reference.
43 * @see #getTarget()
44 * @generated
45 */
46 void setTarget(CommSubsystem value);
47
48 /**
49 * Returns the value of the '<em><b>Frequency</b></em>' attribute.
50 * <!-- begin-user-doc -->
51 * <!-- end-user-doc -->
52 * @return the value of the '<em>Frequency</em>' attribute.
53 * @see #setFrequency(int)
54 * @see satellite.SatellitePackage#getCommSubsystem_Frequency()
55 * @model required="true"
56 * @generated
57 */
58 int getFrequency();
59
60 /**
61 * Sets the value of the '{@link satellite.CommSubsystem#getFrequency <em>Frequency</em>}' attribute.
62 * <!-- begin-user-doc -->
63 * <!-- end-user-doc -->
64 * @param value the new value of the '<em>Frequency</em>' attribute.
65 * @see #getFrequency()
66 * @generated
67 */
68 void setFrequency(int value);
69
70 /**
71 * Returns the value of the '<em><b>Path Length</b></em>' attribute.
72 * <!-- begin-user-doc -->
73 * <!-- end-user-doc -->
74 * @return the value of the '<em>Path Length</em>' attribute.
75 * @see #setPathLength(int)
76 * @see satellite.SatellitePackage#getCommSubsystem_PathLength()
77 * @model required="true"
78 * @generated
79 */
80 int getPathLength();
81
82 /**
83 * Sets the value of the '{@link satellite.CommSubsystem#getPathLength <em>Path Length</em>}' attribute.
84 * <!-- begin-user-doc -->
85 * <!-- end-user-doc -->
86 * @param value the new value of the '<em>Path Length</em>' attribute.
87 * @see #getPathLength()
88 * @generated
89 */
90 void setPathLength(int value);
91
92} // CommSubsystem