Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Borrower.java')
-rw-r--r--tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Borrower.java27
1 files changed, 11 insertions, 16 deletions
diff --git a/tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Borrower.java b/tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Borrower.java
index 04e78e8c5..b9aefcd77 100644
--- a/tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Borrower.java
+++ b/tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Borrower.java
@@ -10,19 +10,15 @@
*/
package org.eclipse.emf.examples.extlibrary;
-
import org.eclipse.emf.common.util.EList;
-
/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Borrower</b></em>'.
- * <!-- end-user-doc -->
- *
+ * <!-- begin-user-doc --> A representation of the model object '<em><b>Borrower</b></em>'. <!-- end-user-doc
+ * -->
* <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.emf.examples.extlibrary.Borrower#getBorrowed <em>Borrowed</em>}</li>
+ * <li>{@link org.eclipse.emf.examples.extlibrary.Borrower#getBorrowed <em>Borrowed</em>}</li>
* </ul>
* </p>
*
@@ -30,20 +26,19 @@ import org.eclipse.emf.common.util.EList;
* @model
* @generated
*/
-public interface Borrower extends Person
-{
- /**
- * Returns the value of the '<em><b>Borrowed</b></em>' reference list.
- * The list contents are of type {@link org.eclipse.emf.examples.extlibrary.Lendable}.
- * It is bidirectional and its opposite is '{@link org.eclipse.emf.examples.extlibrary.Lendable#getBorrowers <em>Borrowers</em>}'.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+public interface Borrower extends Person {
+ /**
+ * Returns the value of the '<em><b>Borrowed</b></em>' reference list. The list contents are of type
+ * {@link org.eclipse.emf.examples.extlibrary.Lendable}. It is bidirectional and its opposite is '
+ * {@link org.eclipse.emf.examples.extlibrary.Lendable#getBorrowers <em>Borrowers</em>}'. <!--
+ * begin-user-doc --> <!-- end-user-doc -->
+ *
* @return the value of the '<em>Borrowed</em>' reference list.
* @see org.eclipse.emf.examples.extlibrary.EXTLibraryPackage#getBorrower_Borrowed()
* @see org.eclipse.emf.examples.extlibrary.Lendable#getBorrowers
* @model opposite="borrowers"
* @generated
*/
- EList<Lendable> getBorrowed();
+ EList<Lendable> getBorrowed();
} // Borrower

Back to the top