aboutsummaryrefslogtreecommitdiffstats
path: root/Metrics/Metrics-Calculation/SocialNetwork_plugin/encore_gen/socialnetwork/SocialNetwork.java
diff options
context:
space:
mode:
Diffstat (limited to 'Metrics/Metrics-Calculation/SocialNetwork_plugin/encore_gen/socialnetwork/SocialNetwork.java')
-rw-r--r--Metrics/Metrics-Calculation/SocialNetwork_plugin/encore_gen/socialnetwork/SocialNetwork.java62
1 files changed, 62 insertions, 0 deletions
diff --git a/Metrics/Metrics-Calculation/SocialNetwork_plugin/encore_gen/socialnetwork/SocialNetwork.java b/Metrics/Metrics-Calculation/SocialNetwork_plugin/encore_gen/socialnetwork/SocialNetwork.java
new file mode 100644
index 00000000..4653f6dd
--- /dev/null
+++ b/Metrics/Metrics-Calculation/SocialNetwork_plugin/encore_gen/socialnetwork/SocialNetwork.java
@@ -0,0 +1,62 @@
1/**
2 */
3package socialnetwork;
4
5import org.eclipse.emf.common.util.EList;
6
7import org.eclipse.emf.ecore.EObject;
8
9/**
10 * <!-- begin-user-doc -->
11 * A representation of the model object '<em><b>Social Network</b></em>'.
12 * <!-- end-user-doc -->
13 *
14 * <p>
15 * The following features are supported:
16 * </p>
17 * <ul>
18 * <li>{@link socialnetwork.SocialNetwork#getName <em>Name</em>}</li>
19 * <li>{@link socialnetwork.SocialNetwork#getPersons <em>Persons</em>}</li>
20 * </ul>
21 *
22 * @see socialnetwork.SocialnetworkPackage#getSocialNetwork()
23 * @model
24 * @generated
25 */
26public interface SocialNetwork extends EObject {
27 /**
28 * Returns the value of the '<em><b>Name</b></em>' attribute.
29 * The default value is <code>"SocialNetwork"</code>.
30 * <!-- begin-user-doc -->
31 * <!-- end-user-doc -->
32 * @return the value of the '<em>Name</em>' attribute.
33 * @see #setName(String)
34 * @see socialnetwork.SocialnetworkPackage#getSocialNetwork_Name()
35 * @model default="SocialNetwork"
36 * @generated
37 */
38 String getName();
39
40 /**
41 * Sets the value of the '{@link socialnetwork.SocialNetwork#getName <em>Name</em>}' attribute.
42 * <!-- begin-user-doc -->
43 * <!-- end-user-doc -->
44 * @param value the new value of the '<em>Name</em>' attribute.
45 * @see #getName()
46 * @generated
47 */
48 void setName(String value);
49
50 /**
51 * Returns the value of the '<em><b>Persons</b></em>' containment reference list.
52 * The list contents are of type {@link socialnetwork.Person}.
53 * <!-- begin-user-doc -->
54 * <!-- end-user-doc -->
55 * @return the value of the '<em>Persons</em>' containment reference list.
56 * @see socialnetwork.SocialnetworkPackage#getSocialNetwork_Persons()
57 * @model containment="true"
58 * @generated
59 */
60 EList<Person> getPersons();
61
62} // SocialNetwork