Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/diagram-definition/org.eclipse.papyrus.umldi/src-gen/org/eclipse/papyrus/umldi/UmlStyle.java')
-rw-r--r--extraplugins/diagram-definition/org.eclipse.papyrus.umldi/src-gen/org/eclipse/papyrus/umldi/UmlStyle.java25
1 files changed, 17 insertions, 8 deletions
diff --git a/extraplugins/diagram-definition/org.eclipse.papyrus.umldi/src-gen/org/eclipse/papyrus/umldi/UmlStyle.java b/extraplugins/diagram-definition/org.eclipse.papyrus.umldi/src-gen/org/eclipse/papyrus/umldi/UmlStyle.java
index dfdcd123c0e..45c782ef47c 100644
--- a/extraplugins/diagram-definition/org.eclipse.papyrus.umldi/src-gen/org/eclipse/papyrus/umldi/UmlStyle.java
+++ b/extraplugins/diagram-definition/org.eclipse.papyrus.umldi/src-gen/org/eclipse/papyrus/umldi/UmlStyle.java
@@ -30,8 +30,8 @@ import org.eclipse.papyrus.dd.di.Style;
* The following features are supported:
* </p>
* <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>
*
* @see org.eclipse.papyrus.umldi.UMLDIPackage#getUmlStyle()
@@ -39,6 +39,7 @@ import org.eclipse.papyrus.dd.di.Style;
* @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,13 +101,15 @@ 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/uml2/2.0.0/UML originalName='fontsize_positive'"
* 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