aboutsummaryrefslogtreecommitdiffstats
path: root/Metrics/Metrics-Calculation/SocialNetwork_plugin/encore_gen/socialnetwork/Person.java
diff options
context:
space:
mode:
Diffstat (limited to 'Metrics/Metrics-Calculation/SocialNetwork_plugin/encore_gen/socialnetwork/Person.java')
-rw-r--r--Metrics/Metrics-Calculation/SocialNetwork_plugin/encore_gen/socialnetwork/Person.java62
1 files changed, 62 insertions, 0 deletions
diff --git a/Metrics/Metrics-Calculation/SocialNetwork_plugin/encore_gen/socialnetwork/Person.java b/Metrics/Metrics-Calculation/SocialNetwork_plugin/encore_gen/socialnetwork/Person.java
new file mode 100644
index 00000000..b1e0a041
--- /dev/null
+++ b/Metrics/Metrics-Calculation/SocialNetwork_plugin/encore_gen/socialnetwork/Person.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>Person</b></em>'.
12 * <!-- end-user-doc -->
13 *
14 * <p>
15 * The following features are supported:
16 * </p>
17 * <ul>
18 * <li>{@link socialnetwork.Person#getFriends <em>Friends</em>}</li>
19 * <li>{@link socialnetwork.Person#getName <em>Name</em>}</li>
20 * </ul>
21 *
22 * @see socialnetwork.SocialnetworkPackage#getPerson()
23 * @model
24 * @generated
25 */
26public interface Person extends EObject {
27 /**
28 * Returns the value of the '<em><b>Friends</b></em>' reference list.
29 * The list contents are of type {@link socialnetwork.Person}.
30 * <!-- begin-user-doc -->
31 * <!-- end-user-doc -->
32 * @return the value of the '<em>Friends</em>' reference list.
33 * @see socialnetwork.SocialnetworkPackage#getPerson_Friends()
34 * @model
35 * @generated
36 */
37 EList<Person> getFriends();
38
39 /**
40 * Returns the value of the '<em><b>Name</b></em>' attribute.
41 * The default value is <code>"Name"</code>.
42 * <!-- begin-user-doc -->
43 * <!-- end-user-doc -->
44 * @return the value of the '<em>Name</em>' attribute.
45 * @see #setName(String)
46 * @see socialnetwork.SocialnetworkPackage#getPerson_Name()
47 * @model default="Name"
48 * @generated
49 */
50 String getName();
51
52 /**
53 * Sets the value of the '{@link socialnetwork.Person#getName <em>Name</em>}' attribute.
54 * <!-- begin-user-doc -->
55 * <!-- end-user-doc -->
56 * @param value the new value of the '<em>Name</em>' attribute.
57 * @see #getName()
58 * @generated
59 */
60 void setName(String value);
61
62} // Person