Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/annotations/primarykeyjoin/Body.java')
-rw-r--r--examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/annotations/primarykeyjoin/Body.java112
1 files changed, 112 insertions, 0 deletions
diff --git a/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/annotations/primarykeyjoin/Body.java b/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/annotations/primarykeyjoin/Body.java
new file mode 100644
index 000000000..69446ab6c
--- /dev/null
+++ b/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/annotations/primarykeyjoin/Body.java
@@ -0,0 +1,112 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id: Body.java,v 1.1 2006/07/11 16:56:54 mtaal Exp $
+ */
+package org.eclipse.emf.teneo.samples.emf.annotations.primarykeyjoin;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Body</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.emf.teneo.samples.emf.annotations.primarykeyjoin.Body#getTheID <em>The ID</em>}</li>
+ * <li>{@link org.eclipse.emf.teneo.samples.emf.annotations.primarykeyjoin.Body#getHead <em>Head</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.emf.teneo.samples.emf.annotations.primarykeyjoin.PrimarykeyjoinPackage#getBody()
+ * @model extendedMetaData="name='Body' kind='elementOnly'"
+ * @generated
+ */
+public interface Body extends EObject {
+ /**
+ * Returns the value of the '<em><b>The ID</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>The ID</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>The ID</em>' attribute.
+ * @see #isSetTheID()
+ * @see #unsetTheID()
+ * @see #setTheID(long)
+ * @see org.eclipse.emf.teneo.samples.emf.annotations.primarykeyjoin.PrimarykeyjoinPackage#getBody_TheID()
+ * @model unique="false" unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Long" required="true"
+ * annotation="http://annotation.elver.org/Id appinfo='true'"
+ * extendedMetaData="kind='element' name='theID'"
+ * @generated
+ */
+ long getTheID();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.emf.teneo.samples.emf.annotations.primarykeyjoin.Body#getTheID <em>The ID</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>The ID</em>' attribute.
+ * @see #isSetTheID()
+ * @see #unsetTheID()
+ * @see #getTheID()
+ * @generated
+ */
+ void setTheID(long value);
+
+ /**
+ * Unsets the value of the '{@link org.eclipse.emf.teneo.samples.emf.annotations.primarykeyjoin.Body#getTheID <em>The ID</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @see #isSetTheID()
+ * @see #getTheID()
+ * @see #setTheID(long)
+ * @generated
+ */
+ void unsetTheID();
+
+ /**
+ * Returns whether the value of the '{@link org.eclipse.emf.teneo.samples.emf.annotations.primarykeyjoin.Body#getTheID <em>The ID</em>}' attribute is set.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return whether the value of the '<em>The ID</em>' attribute is set.
+ * @see #unsetTheID()
+ * @see #getTheID()
+ * @see #setTheID(long)
+ * @generated
+ */
+ boolean isSetTheID();
+
+ /**
+ * Returns the value of the '<em><b>Head</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Head</em>' containment reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Head</em>' containment reference.
+ * @see #setHead(Head)
+ * @see org.eclipse.emf.teneo.samples.emf.annotations.primarykeyjoin.PrimarykeyjoinPackage#getBody_Head()
+ * @model containment="true" resolveProxies="false" required="true"
+ * annotation="http://annotation.elver.org/PrimaryKeyJoinColumn name='theID'"
+ * extendedMetaData="kind='element' name='head'"
+ * @generated
+ */
+ Head getHead();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.emf.teneo.samples.emf.annotations.primarykeyjoin.Body#getHead <em>Head</em>}' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Head</em>' containment reference.
+ * @see #getHead()
+ * @generated
+ */
+ void setHead(Head value);
+
+} // Body

Back to the top