From d76c1c496b0774e28b699dd5ff4f446d580fd986 Mon Sep 17 00:00:00 2001 From: ArenBabikian Date: Mon, 20 May 2019 18:47:20 -0400 Subject: REALMET: implement incoming edges in visualisation. multips need fix --- .../src/simpleStatechart/Entry.java | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/simpleStatechart/Entry.java (limited to 'Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/simpleStatechart/Entry.java') diff --git a/Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/simpleStatechart/Entry.java b/Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/simpleStatechart/Entry.java new file mode 100644 index 00000000..10203691 --- /dev/null +++ b/Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/simpleStatechart/Entry.java @@ -0,0 +1,50 @@ +/** + */ +package simpleStatechart; + +import org.eclipse.emf.ecore.EObject; + +/** + * + * A representation of the model object 'Entry'. + * + * + *

+ * The following features are supported: + *

+ * + * + * @see simpleStatechart.SimpleStatechartPackage#getEntry() + * @model + * @generated + */ +public interface Entry extends EObject { + /** + * Returns the value of the 'Entry' reference. + * + *

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

+ * + * @return the value of the 'Entry' reference. + * @see #setEntry(State) + * @see simpleStatechart.SimpleStatechartPackage#getEntry_Entry() + * @model + * @generated + */ + State getEntry(); + + /** + * Sets the value of the '{@link simpleStatechart.Entry#getEntry Entry}' reference. + * + * + * @param value the new value of the 'Entry' reference. + * @see #getEntry() + * @generated + */ + void setEntry(State value); + +} // Entry -- cgit v1.2.3-54-g00ecf