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/Employee.java')
-rw-r--r--tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Employee.java35
1 files changed, 16 insertions, 19 deletions
diff --git a/tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Employee.java b/tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Employee.java
index 8730dafb2..d252d6bf5 100644
--- a/tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Employee.java
+++ b/tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Employee.java
@@ -10,16 +10,13 @@
*/
package org.eclipse.emf.examples.extlibrary;
-
/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Employee</b></em>'.
- * <!-- end-user-doc -->
- *
+ * <!-- begin-user-doc --> A representation of the model object '<em><b>Employee</b></em>'. <!-- end-user-doc
+ * -->
* <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.emf.examples.extlibrary.Employee#getManager <em>Manager</em>}</li>
+ * <li>{@link org.eclipse.emf.examples.extlibrary.Employee#getManager <em>Manager</em>}</li>
* </ul>
* </p>
*
@@ -27,28 +24,28 @@ package org.eclipse.emf.examples.extlibrary;
* @model
* @generated
*/
-public interface Employee extends Person
-{
- /**
- * Returns the value of the '<em><b>Manager</b></em>' reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+public interface Employee extends Person {
+ /**
+ * Returns the value of the '<em><b>Manager</b></em>' reference. <!-- begin-user-doc --> <!-- end-user-doc
+ * -->
+ *
* @return the value of the '<em>Manager</em>' reference.
* @see #setManager(Employee)
* @see org.eclipse.emf.examples.extlibrary.EXTLibraryPackage#getEmployee_Manager()
* @model
* @generated
*/
- Employee getManager();
+ Employee getManager();
- /**
- * Sets the value of the '{@link org.eclipse.emf.examples.extlibrary.Employee#getManager <em>Manager</em>}' reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Manager</em>' reference.
+ /**
+ * Sets the value of the '{@link org.eclipse.emf.examples.extlibrary.Employee#getManager <em>Manager</em>}
+ * ' reference. <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
+ * @param value
+ * the new value of the '<em>Manager</em>' reference.
* @see #getManager()
* @generated
*/
- void setManager(Employee value);
+ void setManager(Employee value);
} // Employee

Back to the top