Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.emf.teneo.samples/src/org/eclipse/gmf/runtime/notation/Image.java')
-rwxr-xr-xtests/org.eclipse.emf.teneo.samples/src/org/eclipse/gmf/runtime/notation/Image.java48
1 files changed, 25 insertions, 23 deletions
diff --git a/tests/org.eclipse.emf.teneo.samples/src/org/eclipse/gmf/runtime/notation/Image.java b/tests/org.eclipse.emf.teneo.samples/src/org/eclipse/gmf/runtime/notation/Image.java
index 0e00ba6f9..3c91f18f2 100755
--- a/tests/org.eclipse.emf.teneo.samples/src/org/eclipse/gmf/runtime/notation/Image.java
+++ b/tests/org.eclipse.emf.teneo.samples/src/org/eclipse/gmf/runtime/notation/Image.java
@@ -14,55 +14,57 @@ package org.eclipse.gmf.runtime.notation;
import org.eclipse.emf.ecore.EObject;
/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Image</b></em>'.
+ * <!-- begin-user-doc --> A representation of the model object '<em><b>Image</b></em>'.
* <p>
* An image is representing a serialization of an image file
* </p>
* <!-- end-user-doc -->
- *
+ *
* <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.gmf.runtime.notation.Image#getData <em>Data</em>}</li>
+ * <li>{@link org.eclipse.gmf.runtime.notation.Image#getData <em>Data</em>}</li>
* </ul>
* </p>
- *
+ *
* @see org.eclipse.gmf.runtime.notation.NotationPackage#getImage()
- * @model
+ * @model
* @generated
*/
/*
* @canBeSeenBy %partners
*/
public interface Image extends EObject {
- /**
- * Returns the value of the '<em><b>Data</b></em>' attribute.
- * <!-- begin-user-doc -->
+ /**
+ * Returns the value of the '<em><b>Data</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* The data is a blop representing the image data. The returned <code>byte[]</code> is not
- * expected to be changed. If a change is requried, it has to be through the <code>setData()</code> API
+ * expected to be changed. If a change is requried, it has to be through the
+ * <code>setData()</code> API
* </p>
* <!-- end-user-doc -->
- * @return the value of the '<em>Data</em>' attribute.
- * @see #setData(byte[])
- * @see org.eclipse.gmf.runtime.notation.NotationPackage#getImage_Data()
- * @model
- * @generated
- */
+ *
+ * @return the value of the '<em>Data</em>' attribute.
+ * @see #setData(byte[])
+ * @see org.eclipse.gmf.runtime.notation.NotationPackage#getImage_Data()
+ * @model
+ * @generated
+ */
byte[] getData();
- /**
- * Sets the value of the '{@link org.eclipse.gmf.runtime.notation.Image#getData <em>Data</em>}' attribute.
- * <!-- begin-user-doc -->
+ /**
+ * Sets the value of the '{@link org.eclipse.gmf.runtime.notation.Image#getData <em>Data</em>}'
+ * attribute. <!-- begin-user-doc -->
* <p>
* The data is a blop representing the image data.
* </p>
* <!-- end-user-doc -->
- * @param value the new value of the '<em>Data</em>' attribute.
- * @see #getData()
- * @generated
- */
+ *
+ * @param value
+ * the new value of the '<em>Data</em>' attribute.
+ * @see #getData()
+ * @generated
+ */
void setData(byte[] value);
} // Image

Back to the top