Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'hibernate/org.eclipse.emf.teneo.hibernate.examples/src/org/eclipse/emf/teneo/hibernate/examples/extlibrary/Lendable.java')
-rwxr-xr-xhibernate/org.eclipse.emf.teneo.hibernate.examples/src/org/eclipse/emf/teneo/hibernate/examples/extlibrary/Lendable.java75
1 files changed, 75 insertions, 0 deletions
diff --git a/hibernate/org.eclipse.emf.teneo.hibernate.examples/src/org/eclipse/emf/teneo/hibernate/examples/extlibrary/Lendable.java b/hibernate/org.eclipse.emf.teneo.hibernate.examples/src/org/eclipse/emf/teneo/hibernate/examples/extlibrary/Lendable.java
new file mode 100755
index 000000000..f78f061b0
--- /dev/null
+++ b/hibernate/org.eclipse.emf.teneo.hibernate.examples/src/org/eclipse/emf/teneo/hibernate/examples/extlibrary/Lendable.java
@@ -0,0 +1,75 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id: Lendable.java,v 1.2 2010/03/02 06:08:38 mtaal Exp $
+ */
+package org.eclipse.emf.teneo.hibernate.examples.extlibrary;
+
+import org.eclipse.emf.common.util.EList;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Lendable</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.emf.teneo.hibernate.examples.extlibrary.Lendable#getCopies <em>Copies</em>}</li>
+ * <li>{@link org.eclipse.emf.teneo.hibernate.examples.extlibrary.Lendable#getBorrowers <em>Borrowers</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.emf.teneo.hibernate.examples.extlibrary.ExtlibraryPackage#getLendable()
+ * @model interface="true" abstract="true"
+ * @generated
+ */
+public interface Lendable extends EObject {
+ /**
+ * Returns the value of the '<em><b>Copies</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Copies</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Copies</em>' attribute.
+ * @see #setCopies(int)
+ * @see org.eclipse.emf.teneo.hibernate.examples.extlibrary.ExtlibraryPackage#getLendable_Copies()
+ * @model required="true"
+ * @generated
+ */
+ int getCopies();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.emf.teneo.hibernate.examples.extlibrary.Lendable#getCopies <em>Copies</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Copies</em>' attribute.
+ * @see #getCopies()
+ * @generated
+ */
+ void setCopies(int value);
+
+ /**
+ * Returns the value of the '<em><b>Borrowers</b></em>' reference list.
+ * The list contents are of type {@link org.eclipse.emf.teneo.hibernate.examples.extlibrary.Borrower}.
+ * It is bidirectional and its opposite is '{@link org.eclipse.emf.teneo.hibernate.examples.extlibrary.Borrower#getBorrowed <em>Borrowed</em>}'.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Borrowers</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>Borrowers</em>' reference list.
+ * @see org.eclipse.emf.teneo.hibernate.examples.extlibrary.ExtlibraryPackage#getLendable_Borrowers()
+ * @see org.eclipse.emf.teneo.hibernate.examples.extlibrary.Borrower#getBorrowed
+ * @model opposite="borrowed" ordered="false"
+ * @generated
+ */
+ EList<Borrower> getBorrowers();
+
+} // Lendable

Back to the top