Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/diagram-definition/org.eclipse.papyrus.umldi/src/org/eclipse/papyrus/umldi/UmlStyle.java')
-rw-r--r--extraplugins/diagram-definition/org.eclipse.papyrus.umldi/src/org/eclipse/papyrus/umldi/UmlStyle.java31
1 files changed, 20 insertions, 11 deletions
diff --git a/extraplugins/diagram-definition/org.eclipse.papyrus.umldi/src/org/eclipse/papyrus/umldi/UmlStyle.java b/extraplugins/diagram-definition/org.eclipse.papyrus.umldi/src/org/eclipse/papyrus/umldi/UmlStyle.java
index 034f6e514bb..2df30015e8d 100644
--- a/extraplugins/diagram-definition/org.eclipse.papyrus.umldi/src/org/eclipse/papyrus/umldi/UmlStyle.java
+++ b/extraplugins/diagram-definition/org.eclipse.papyrus.umldi/src/org/eclipse/papyrus/umldi/UmlStyle.java
@@ -21,24 +21,25 @@ import org.eclipse.papyrus.dd.di.Style;
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Uml Style</b></em>'.
* <!-- end-user-doc -->
- *
+ *
* <!-- begin-model-doc -->
* The most general class for Styles in UML.
* <!-- end-model-doc -->
- *
+ *
* <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.papyrus.umldi.UmlStyle#getFontName <em>Font Name</em>}</li>
- * <li>{@link org.eclipse.papyrus.umldi.UmlStyle#getFontSize <em>Font Size</em>}</li>
+ * <li>{@link org.eclipse.papyrus.umldi.UmlStyle#getFontName <em>Font Name</em>}</li>
+ * <li>{@link org.eclipse.papyrus.umldi.UmlStyle#getFontSize <em>Font Size</em>}</li>
* </ul>
* </p>
- *
+ *
* @see org.eclipse.papyrus.umldi.UMLDIPackage#getUmlStyle()
* @model
* @generated
*/
public interface UmlStyle extends Style {
+
/**
* Returns the value of the '<em><b>Font Name</b></em>' attribute.
* <!-- begin-user-doc -->
@@ -46,6 +47,7 @@ public interface UmlStyle extends Style {
* <!-- begin-model-doc -->
* Name of a font used to render strings.
* <!-- end-model-doc -->
+ *
* @return the value of the '<em>Font Name</em>' attribute.
* @see #setFontName(String)
* @see org.eclipse.papyrus.umldi.UMLDIPackage#getUmlStyle_FontName()
@@ -58,7 +60,9 @@ public interface UmlStyle extends Style {
* Sets the value of the '{@link org.eclipse.papyrus.umldi.UmlStyle#getFontName <em>Font Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
- * @param value the new value of the '<em>Font Name</em>' attribute.
+ *
+ * @param value
+ * the new value of the '<em>Font Name</em>' attribute.
* @see #getFontName()
* @generated
*/
@@ -71,6 +75,7 @@ public interface UmlStyle extends Style {
* <!-- begin-model-doc -->
* Size of a font for rendering strings, given in typographical points.
* <!-- end-model-doc -->
+ *
* @return the value of the '<em>Font Size</em>' attribute.
* @see #setFontSize(double)
* @see org.eclipse.papyrus.umldi.UMLDIPackage#getUmlStyle_FontSize()
@@ -83,7 +88,9 @@ public interface UmlStyle extends Style {
* Sets the value of the '{@link org.eclipse.papyrus.umldi.UmlStyle#getFontSize <em>Font Size</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
- * @param value the new value of the '<em>Font Size</em>' attribute.
+ *
+ * @param value
+ * the new value of the '<em>Font Size</em>' attribute.
* @see #getFontSize()
* @generated
*/
@@ -94,12 +101,14 @@ public interface UmlStyle extends Style {
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* fontSize must be greater than zero.
- * @param diagnostics The chain of diagnostics to which problems are to be appended.
- * @param context The cache of context-specific information.
- * <!-- end-model-doc -->
+ *
+ * @param diagnostics
+ * The chain of diagnostics to which problems are to be appended.
+ * @param context
+ * The cache of context-specific information.
+ * <!-- end-model-doc -->
* @model annotation="http://www.eclipse.org/emf/2002/Ecore/OCL body='fontSize > 0'"
* @generated
*/
boolean fontsizePositive(DiagnosticChain diagnostics, Map<Object, Object> context);
-
} // UmlStyle

Back to the top