Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.lm/src/org/eclipse/emf/cdo/lm/FloatingBaseline.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.lm/src/org/eclipse/emf/cdo/lm/FloatingBaseline.java79
1 files changed, 79 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo.lm/src/org/eclipse/emf/cdo/lm/FloatingBaseline.java b/plugins/org.eclipse.emf.cdo.lm/src/org/eclipse/emf/cdo/lm/FloatingBaseline.java
new file mode 100644
index 0000000000..727475afeb
--- /dev/null
+++ b/plugins/org.eclipse.emf.cdo.lm/src/org/eclipse/emf/cdo/lm/FloatingBaseline.java
@@ -0,0 +1,79 @@
+/*
+ * Copyright (c) 2022 Eike Stepper (Loehne, Germany) and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Eike Stepper - initial API and implementation
+ */
+package org.eclipse.emf.cdo.lm;
+
+import org.eclipse.emf.cdo.common.branch.CDOBranchRef;
+
+import org.eclipse.emf.common.util.EList;
+
+/**
+ * <!-- begin-user-doc --> A representation of the model object '<em><b>Floating
+ * Baseline</b></em>'.
+ * @noextend This interface is not intended to be extended by clients.
+ * @noimplement This interface is not intended to be implemented by clients.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * </p>
+ * <ul>
+ * <li>{@link org.eclipse.emf.cdo.lm.FloatingBaseline#isClosed <em>Closed</em>}</li>
+ * </ul>
+ *
+ * @see org.eclipse.emf.cdo.lm.LMPackage#getFloatingBaseline()
+ * @model abstract="true"
+ * @generated
+ */
+public interface FloatingBaseline extends Baseline
+{
+ /**
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ * @model kind="operation" dataType="org.eclipse.emf.cdo.etypes.BranchRef" required="true"
+ * @generated
+ */
+ CDOBranchRef getBranch();
+
+ /**
+ * Returns the value of the '<em><b>Closed</b></em>' attribute. <!--
+ * begin-user-doc --> <!-- end-user-doc -->
+ *
+ * @return the value of the '<em>Closed</em>' attribute.
+ * @see #setClosed(boolean)
+ * @see org.eclipse.emf.cdo.lm.LMPackage#getFloatingBaseline_Closed()
+ * @model
+ * @generated
+ */
+ boolean isClosed();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.emf.cdo.lm.FloatingBaseline#isClosed <em>Closed</em>}' attribute.
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ * @param value the new value of the '<em>Closed</em>' attribute.
+ * @see #isClosed()
+ * @generated
+ */
+ void setClosed(boolean value);
+
+ /**
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ * @model kind="operation"
+ * @generated
+ */
+ FixedBaseline getBase();
+
+ /**
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ * @model kind="operation"
+ * @generated
+ */
+ EList<Delivery> getDeliveries();
+
+} // FloatingBaseline

Back to the top