From 945f487a08b643392a5d5918c631640b9a0e4605 Mon Sep 17 00:00:00 2001 From: 20001LastOrder Date: Tue, 3 Nov 2020 22:52:26 -0500 Subject: add realistic solver --- .../encore_gen/socialnetwork/Person.java | 62 ++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 Metrics/Metrics-Calculation/SocialNetwork_plugin/encore_gen/socialnetwork/Person.java (limited to 'Metrics/Metrics-Calculation/SocialNetwork_plugin/encore_gen/socialnetwork/Person.java') 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 @@ +/** + */ +package socialnetwork; + +import org.eclipse.emf.common.util.EList; + +import org.eclipse.emf.ecore.EObject; + +/** + * + * A representation of the model object 'Person'. + * + * + *

+ * The following features are supported: + *

+ * + * + * @see socialnetwork.SocialnetworkPackage#getPerson() + * @model + * @generated + */ +public interface Person extends EObject { + /** + * Returns the value of the 'Friends' reference list. + * The list contents are of type {@link socialnetwork.Person}. + * + * + * @return the value of the 'Friends' reference list. + * @see socialnetwork.SocialnetworkPackage#getPerson_Friends() + * @model + * @generated + */ + EList getFriends(); + + /** + * Returns the value of the 'Name' attribute. + * The default value is "Name". + * + * + * @return the value of the 'Name' attribute. + * @see #setName(String) + * @see socialnetwork.SocialnetworkPackage#getPerson_Name() + * @model default="Name" + * @generated + */ + String getName(); + + /** + * Sets the value of the '{@link socialnetwork.Person#getName Name}' attribute. + * + * + * @param value the new value of the 'Name' attribute. + * @see #getName() + * @generated + */ + void setName(String value); + +} // Person -- cgit v1.2.3-54-g00ecf