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/OrderConstraint.java')
-rw-r--r--extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/timing/timingconstraints/OrderConstraint.java82
1 files changed, 0 insertions, 82 deletions
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/timing/timingconstraints/OrderConstraint.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/timing/timingconstraints/OrderConstraint.java
deleted file mode 100644
index 4c0c95ef5df..00000000000
--- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/timing/timingconstraints/OrderConstraint.java
+++ /dev/null
@@ -1,82 +0,0 @@
-/**
- */
-package org.eclipse.papyrus.eastadl.timing.timingconstraints;
-
-import org.eclipse.papyrus.eastadl.timing.Event;
-import org.eclipse.papyrus.eastadl.timing.TimingConstraint;
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Order Constraint</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.timing.timingconstraints.OrderConstraint#getSource <em>Source</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.timing.timingconstraints.OrderConstraint#getTarget <em>Target</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.papyrus.eastadl.timing.timingconstraints.TimingconstraintsPackage#getOrderConstraint()
- * @model
- * @generated
- */
-public interface OrderConstraint extends TimingConstraint {
- /**
- * Returns the value of the '<em><b>Source</b></em>' reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Source</em>' reference isn't clear, there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- *
- * @return the value of the '<em>Source</em>' reference.
- * @see #setSource(Event)
- * @see org.eclipse.papyrus.eastadl.timing.timingconstraints.TimingconstraintsPackage#getOrderConstraint_Source()
- * @model required="true" ordered="false"
- * @generated
- */
- Event getSource();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.eastadl.timing.timingconstraints.OrderConstraint#getSource <em>Source</em>}' reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- *
- * @param value
- * the new value of the '<em>Source</em>' reference.
- * @see #getSource()
- * @generated
- */
- void setSource(Event value);
-
- /**
- * Returns the value of the '<em><b>Target</b></em>' reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Target</em>' reference isn't clear, there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- *
- * @return the value of the '<em>Target</em>' reference.
- * @see #setTarget(Event)
- * @see org.eclipse.papyrus.eastadl.timing.timingconstraints.TimingconstraintsPackage#getOrderConstraint_Target()
- * @model required="true" ordered="false"
- * @generated
- */
- Event getTarget();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.eastadl.timing.timingconstraints.OrderConstraint#getTarget <em>Target</em>}' reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- *
- * @param value
- * the new value of the '<em>Target</em>' reference.
- * @see #getTarget()
- * @generated
- */
- void setTarget(Event value);
-
-} // OrderConstraint

Back to the top