Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/timing/timingconstraints/StrongSynchronizationConstraint.java')
-rw-r--r--extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/timing/timingconstraints/StrongSynchronizationConstraint.java59
1 files changed, 59 insertions, 0 deletions
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/timing/timingconstraints/StrongSynchronizationConstraint.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/timing/timingconstraints/StrongSynchronizationConstraint.java
new file mode 100644
index 00000000000..2daaf082ebd
--- /dev/null
+++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/timing/timingconstraints/StrongSynchronizationConstraint.java
@@ -0,0 +1,59 @@
+/**
+ */
+package org.eclipse.papyrus.eastadl.timing.timingconstraints;
+
+import org.eclipse.emf.common.util.EList;
+import org.eclipse.papyrus.eastadl.timing.Event;
+import org.eclipse.papyrus.eastadl.timing.TimingConstraint;
+import org.eclipse.papyrus.eastadl.timing.TimingExpression;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Strong Synchronization Constraint</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.eastadl.timing.timingconstraints.StrongSynchronizationConstraint#getEvent <em>Event</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.timing.timingconstraints.StrongSynchronizationConstraint#getTolerance <em>Tolerance</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.papyrus.eastadl.timing.timingconstraints.TimingconstraintsPackage#getStrongSynchronizationConstraint()
+ * @model
+ * @generated
+ */
+public interface StrongSynchronizationConstraint extends TimingConstraint {
+ /**
+ * Returns the value of the '<em><b>Event</b></em>' reference list.
+ * The list contents are of type {@link org.eclipse.papyrus.eastadl.timing.Event}.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Event</em>' reference list isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Event</em>' reference list.
+ * @see org.eclipse.papyrus.eastadl.timing.timingconstraints.TimingconstraintsPackage#getStrongSynchronizationConstraint_Event()
+ * @model lower="2" ordered="false"
+ * @generated
+ */
+ EList<Event> getEvent();
+
+ /**
+ * Returns the value of the '<em><b>Tolerance</b></em>' reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Tolerance</em>' reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Tolerance</em>' reference.
+ * @see org.eclipse.papyrus.eastadl.timing.timingconstraints.TimingconstraintsPackage#getStrongSynchronizationConstraint_Tolerance()
+ * @model transient="true" changeable="false" volatile="true" derived="true" ordered="false"
+ * @generated
+ */
+ TimingExpression getTolerance();
+
+} // StrongSynchronizationConstraint

Back to the top