Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.emf.teneo.samples/src/testinheritance/ParentTwo.java')
-rw-r--r--examples/org.eclipse.emf.teneo.samples/src/testinheritance/ParentTwo.java54
1 files changed, 54 insertions, 0 deletions
diff --git a/examples/org.eclipse.emf.teneo.samples/src/testinheritance/ParentTwo.java b/examples/org.eclipse.emf.teneo.samples/src/testinheritance/ParentTwo.java
new file mode 100644
index 000000000..689ac8941
--- /dev/null
+++ b/examples/org.eclipse.emf.teneo.samples/src/testinheritance/ParentTwo.java
@@ -0,0 +1,54 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id: ParentTwo.java,v 1.1.2.2 2007/03/21 16:09:28 mtaal Exp $
+ */
+package testinheritance;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Parent Two</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link testinheritance.ParentTwo#getTestId <em>Test Id</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see testinheritance.TestinheritancePackage#getParentTwo()
+ * @model annotation="teneo.jpa appinfo='@MappedSuperclass'"
+ * @generated
+ */
+public interface ParentTwo extends EObject {
+ /**
+ * Returns the value of the '<em><b>Test Id</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Test 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>Test Id</em>' attribute.
+ * @see #setTestId(long)
+ * @see testinheritance.TestinheritancePackage#getParentTwo_TestId()
+ * @model annotation="teneo.jpa appinfo='@Id'"
+ * @generated
+ */
+ long getTestId();
+
+ /**
+ * Sets the value of the '{@link testinheritance.ParentTwo#getTestId <em>Test Id</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Test Id</em>' attribute.
+ * @see #getTestId()
+ * @generated
+ */
+ void setTestId(long value);
+
+} // ParentTwo \ No newline at end of file

Back to the top