Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/diagram-definition/org.eclipse.papyrus.dd/src/org/eclipse/papyrus/dd/dc/Dimension.java')
-rw-r--r--extraplugins/diagram-definition/org.eclipse.papyrus.dd/src/org/eclipse/papyrus/dd/dc/Dimension.java48
1 files changed, 26 insertions, 22 deletions
diff --git a/extraplugins/diagram-definition/org.eclipse.papyrus.dd/src/org/eclipse/papyrus/dd/dc/Dimension.java b/extraplugins/diagram-definition/org.eclipse.papyrus.dd/src/org/eclipse/papyrus/dd/dc/Dimension.java
index 72a90128bb9..8c9fbc4247d 100644
--- a/extraplugins/diagram-definition/org.eclipse.papyrus.dd/src/org/eclipse/papyrus/dd/dc/Dimension.java
+++ b/extraplugins/diagram-definition/org.eclipse.papyrus.dd/src/org/eclipse/papyrus/dd/dc/Dimension.java
@@ -18,21 +18,20 @@ import org.eclipse.emf.common.util.DiagnosticChain;
import org.eclipse.emf.ecore.EObject;
/**
- * <!-- begin-user-doc --> A representation of the model object '
- * <em><b>Dimension</b></em>'. <!-- end-user-doc -->
- *
+ * <!-- begin-user-doc --> A representation of the model object ' <em><b>Dimension</b></em>'. <!-- end-user-doc -->
+ *
* <!-- begin-model-doc -->
* Dimension specifies two lengths (width and height) along the x and y axes in some x-y coordinate system.
* <!-- end-model-doc -->
- *
+ *
* <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.papyrus.dd.dc.Dimension#getWidth <em>Width</em>}</li>
- * <li>{@link org.eclipse.papyrus.dd.dc.Dimension#getHeight <em>Height</em>}</li>
+ * <li>{@link org.eclipse.papyrus.dd.dc.Dimension#getWidth <em>Width</em>}</li>
+ * <li>{@link org.eclipse.papyrus.dd.dc.Dimension#getHeight <em>Height</em>}</li>
* </ul>
* </p>
- *
+ *
* @see org.eclipse.papyrus.dd.dc.DCPackage#getDimension()
* @model
* @generated
@@ -57,7 +56,9 @@ public interface Dimension extends EObject {
/**
* Sets the value of the '{@link org.eclipse.papyrus.dd.dc.Dimension#getWidth <em>Width</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
- * @param value the new value of the '<em>Width</em>' attribute.
+ *
+ * @param value
+ * the new value of the '<em>Width</em>' attribute.
* @see #isSetWidth()
* @see #unsetWidth()
* @see #getWidth()
@@ -68,6 +69,7 @@ public interface Dimension extends EObject {
/**
* Unsets the value of the '{@link org.eclipse.papyrus.dd.dc.Dimension#getWidth <em>Width</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @see #isSetWidth()
* @see #getWidth()
* @see #setWidth(double)
@@ -78,6 +80,7 @@ public interface Dimension extends EObject {
/**
* Returns whether the value of the '{@link org.eclipse.papyrus.dd.dc.Dimension#getWidth <em>Width</em>}' attribute is set.
* <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @return whether the value of the '<em>Width</em>' attribute is set.
* @see #unsetWidth()
* @see #getWidth()
@@ -104,7 +107,9 @@ public interface Dimension extends EObject {
/**
* Sets the value of the '{@link org.eclipse.papyrus.dd.dc.Dimension#getHeight <em>Height</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
- * @param value the new value of the '<em>Height</em>' attribute.
+ *
+ * @param value
+ * the new value of the '<em>Height</em>' attribute.
* @see #isSetHeight()
* @see #unsetHeight()
* @see #getHeight()
@@ -115,6 +120,7 @@ public interface Dimension extends EObject {
/**
* Unsets the value of the '{@link org.eclipse.papyrus.dd.dc.Dimension#getHeight <em>Height</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @see #isSetHeight()
* @see #getHeight()
* @see #setHeight(double)
@@ -125,6 +131,7 @@ public interface Dimension extends EObject {
/**
* Returns whether the value of the '{@link org.eclipse.papyrus.dd.dc.Dimension#getHeight <em>Height</em>}' attribute is set.
* <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @return whether the value of the '<em>Height</em>' attribute is set.
* @see #unsetHeight()
* @see #getHeight()
@@ -138,31 +145,28 @@ public interface Dimension extends EObject {
* the width of a dimension cannot be negative
*
* @param diagnostics
- * The chain of diagnostics to which problems are to be appended.
+ * The chain of diagnostics to which problems are to be appended.
* @param context
- * The cache of context-specific information. <!-- end-model-doc
- * -->
- * @model
+ * The cache of context-specific information. <!-- end-model-doc
+ * -->
+ * @model
* annotation="http://www.eclipse.org/emf/2002/Ecore/OCL body='width >=0'"
* @generated
*/
- boolean nonNegativeWidth(DiagnosticChain diagnostics,
- Map<Object, Object> context);
+ boolean nonNegativeWidth(DiagnosticChain diagnostics, Map<Object, Object> context);
/**
* <!-- begin-user-doc --> <!-- end-user-doc --> <!-- begin-model-doc -->
* the height of a dimension cannot be negative
*
* @param diagnostics
- * The chain of diagnostics to which problems are to be appended.
+ * The chain of diagnostics to which problems are to be appended.
* @param context
- * The cache of context-specific information. <!-- end-model-doc
- * -->
- * @model
+ * The cache of context-specific information. <!-- end-model-doc
+ * -->
+ * @model
* annotation="http://www.eclipse.org/emf/2002/Ecore/OCL body='height >=0'"
* @generated
*/
- boolean nonNegativeHeight(DiagnosticChain diagnostics,
- Map<Object, Object> context);
-
+ boolean nonNegativeHeight(DiagnosticChain diagnostics, Map<Object, Object> context);
} // Dimension

Back to the top