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/Statechart.java | 69 ++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/simpleStatechart/Statechart.java (limited to 'Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/simpleStatechart/Statechart.java') diff --git a/Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/simpleStatechart/Statechart.java b/Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/simpleStatechart/Statechart.java new file mode 100644 index 00000000..10c6dfc1 --- /dev/null +++ b/Metrics/ca.mcgill.ecse.dslreasoner.realistic.metrics/src/simpleStatechart/Statechart.java @@ -0,0 +1,69 @@ +/** + */ +package simpleStatechart; + +import org.eclipse.emf.common.util.EList; + +import org.eclipse.emf.ecore.EObject; + +/** + * + * A representation of the model object 'Statechart'. + * + * + *

+ * The following features are supported: + *

+ * + * + * @see simpleStatechart.SimpleStatechartPackage#getStatechart() + * @model + * @generated + */ +public interface Statechart extends EObject { + /** + * Returns the value of the 'State' containment reference list. + * The list contents are of type {@link simpleStatechart.State}. + * + *

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

+ * + * @return the value of the 'State' containment reference list. + * @see simpleStatechart.SimpleStatechartPackage#getStatechart_State() + * @model containment="true" + * @generated + */ + EList getState(); + + /** + * Returns the value of the 'Entry' containment reference. + * + *

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

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