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/Addressable.java')
-rw-r--r--tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Addressable.java36
1 files changed, 16 insertions, 20 deletions
diff --git a/tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Addressable.java b/tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Addressable.java
index 03a8b0a3b..73d172223 100644
--- a/tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Addressable.java
+++ b/tutorial/org.eclipse.emf.examples.library/src/org/eclipse/emf/examples/extlibrary/Addressable.java
@@ -10,19 +10,15 @@
*/
package org.eclipse.emf.examples.extlibrary;
-
import org.eclipse.emf.ecore.EObject;
-
/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Addressable</b></em>'.
- * <!-- end-user-doc -->
- *
+ * <!-- begin-user-doc --> A representation of the model object '<em><b>Addressable</b></em>'. <!--
+ * end-user-doc -->
* <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.emf.examples.extlibrary.Addressable#getAddress <em>Address</em>}</li>
+ * <li>{@link org.eclipse.emf.examples.extlibrary.Addressable#getAddress <em>Address</em>}</li>
* </ul>
* </p>
*
@@ -30,28 +26,28 @@ import org.eclipse.emf.ecore.EObject;
* @model interface="true" abstract="true"
* @generated
*/
-public interface Addressable extends EObject
-{
- /**
- * Returns the value of the '<em><b>Address</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+public interface Addressable extends EObject {
+ /**
+ * Returns the value of the '<em><b>Address</b></em>' attribute. <!-- begin-user-doc --> <!-- end-user-doc
+ * -->
+ *
* @return the value of the '<em>Address</em>' attribute.
* @see #setAddress(String)
* @see org.eclipse.emf.examples.extlibrary.EXTLibraryPackage#getAddressable_Address()
* @model
* @generated
*/
- String getAddress();
+ String getAddress();
- /**
- * Sets the value of the '{@link org.eclipse.emf.examples.extlibrary.Addressable#getAddress <em>Address</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Address</em>' attribute.
+ /**
+ * Sets the value of the '{@link org.eclipse.emf.examples.extlibrary.Addressable#getAddress
+ * <em>Address</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
+ * @param value
+ * the new value of the '<em>Address</em>' attribute.
* @see #getAddress()
* @generated
*/
- void setAddress(String value);
+ void setAddress(String value);
} // Addressable

Back to the top