From 250722c453223a238192fda8db9e692ea776afc7 Mon Sep 17 00:00:00 2001 From: ArenBabikian Date: Sun, 19 May 2019 04:57:59 -0400 Subject: REALMET: first impl of n'hood visualis. minor bug with adding outgng 0s. --- .../src/linkedList/List.java | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/linkedList/List.java (limited to 'Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/linkedList/List.java') diff --git a/Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/linkedList/List.java b/Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/linkedList/List.java new file mode 100644 index 00000000..a72cc711 --- /dev/null +++ b/Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/linkedList/List.java @@ -0,0 +1,50 @@ +/** + */ +package linkedList; + +import org.eclipse.emf.ecore.EObject; + +/** + * + * A representation of the model object 'List'. + * + * + *

+ * The following features are supported: + *

+ * + * + * @see linkedList.LinkedListPackage#getList() + * @model + * @generated + */ +public interface List extends EObject { + /** + * Returns the value of the 'First' containment reference. + * + *

+ * If the meaning of the 'First' reference isn't clear, + * there really should be more of a description here... + *

+ * + * @return the value of the 'First' containment reference. + * @see #setFirst(Element) + * @see linkedList.LinkedListPackage#getList_First() + * @model containment="true" + * @generated + */ + Element getFirst(); + + /** + * Sets the value of the '{@link linkedList.List#getFirst First}' containment reference. + * + * + * @param value the new value of the 'First' containment reference. + * @see #getFirst() + * @generated + */ + void setFirst(Element value); + +} // List -- cgit v1.2.3-54-g00ecf