Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.sirius.diagram.model/src-gen/org/eclipse/sirius/diagram/description/style/EllipseNodeDescription.java')
-rw-r--r--plugins/org.eclipse.sirius.diagram.model/src-gen/org/eclipse/sirius/diagram/description/style/EllipseNodeDescription.java115
1 files changed, 115 insertions, 0 deletions
diff --git a/plugins/org.eclipse.sirius.diagram.model/src-gen/org/eclipse/sirius/diagram/description/style/EllipseNodeDescription.java b/plugins/org.eclipse.sirius.diagram.model/src-gen/org/eclipse/sirius/diagram/description/style/EllipseNodeDescription.java
new file mode 100644
index 0000000000..7f4a40d1ca
--- /dev/null
+++ b/plugins/org.eclipse.sirius.diagram.model/src-gen/org/eclipse/sirius/diagram/description/style/EllipseNodeDescription.java
@@ -0,0 +1,115 @@
+/**
+ * Copyright (c) 2007, 2013 THALES GLOBAL SERVICES.
+ * This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License 2.0
+ * which accompanies this distribution, and is available at
+ * https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * Contributors:
+ * Obeo - initial API and implementation
+ *
+ */
+package org.eclipse.sirius.diagram.description.style;
+
+import org.eclipse.sirius.viewpoint.description.ColorDescription;
+
+/**
+ * <!-- begin-user-doc --> A representation of the model object ' <em><b>Ellipse Node Description</b></em>'. <!--
+ * end-user-doc -->
+ *
+ * <!-- begin-model-doc --> The ellipse style to display a node as an ellipse. <!-- end-model-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * </p>
+ * <ul>
+ * <li>{@link org.eclipse.sirius.diagram.description.style.EllipseNodeDescription#getColor <em>Color</em>}</li>
+ * <li>{@link org.eclipse.sirius.diagram.description.style.EllipseNodeDescription#getHorizontalDiameterComputationExpression
+ * <em>Horizontal Diameter Computation Expression</em>}</li>
+ * <li>{@link org.eclipse.sirius.diagram.description.style.EllipseNodeDescription#getVerticalDiameterComputationExpression
+ * <em>Vertical Diameter Computation Expression</em>}</li>
+ * </ul>
+ *
+ * @see org.eclipse.sirius.diagram.description.style.StylePackage#getEllipseNodeDescription()
+ * @model
+ * @generated
+ */
+public interface EllipseNodeDescription extends NodeStyleDescription {
+ /**
+ * Returns the value of the '<em><b>Color</b></em>' reference. <!-- begin-user-doc --> <!-- end-user-doc --> <!--
+ * begin-model-doc --> The color of the ellipse. <!-- end-model-doc -->
+ *
+ * @return the value of the '<em>Color</em>' reference.
+ * @see #setColor(ColorDescription)
+ * @see org.eclipse.sirius.diagram.description.style.StylePackage#getEllipseNodeDescription_Color()
+ * @model required="true"
+ * @generated
+ */
+ ColorDescription getColor();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.sirius.diagram.description.style.EllipseNodeDescription#getColor
+ * <em>Color</em>}' reference. <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
+ * @param value
+ * the new value of the '<em>Color</em>' reference.
+ * @see #getColor()
+ * @generated
+ */
+ void setColor(ColorDescription value);
+
+ /**
+ * Returns the value of the ' <em><b>Horizontal Diameter Computation Expression</b></em>' attribute. The default
+ * value is <code>"0"</code>. <!-- begin-user-doc --> <!-- end-user-doc --> <!-- begin-model-doc --> An expression
+ * to compute the horizontal diameter of the ellipse. (Semimajor axis) <!-- end-model-doc -->
+ *
+ * @return the value of the ' <em>Horizontal Diameter Computation Expression</em>' attribute.
+ * @see #setHorizontalDiameterComputationExpression(String)
+ * @see org.eclipse.sirius.diagram.description.style.StylePackage#getEllipseNodeDescription_HorizontalDiameterComputationExpression()
+ * @model default="0" dataType= "org.eclipse.sirius.viewpoint.description.InterpretedExpression" annotation=
+ * "http://www.eclipse.org/sirius/interpreted/expression/returnType returnType='an integer.'"
+ * @generated
+ */
+ String getHorizontalDiameterComputationExpression();
+
+ /**
+ * Sets the value of the
+ * '{@link org.eclipse.sirius.diagram.description.style.EllipseNodeDescription#getHorizontalDiameterComputationExpression
+ * <em>Horizontal Diameter Computation Expression</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
+ * @param value
+ * the new value of the '<em>Horizontal Diameter Computation Expression</em>' attribute.
+ * @see #getHorizontalDiameterComputationExpression()
+ * @generated
+ */
+ void setHorizontalDiameterComputationExpression(String value);
+
+ /**
+ * Returns the value of the ' <em><b>Vertical Diameter Computation Expression</b></em>' attribute. The default value
+ * is <code>"0"</code>. <!-- begin-user-doc --> <!-- end-user-doc --> <!-- begin-model-doc --> An expression to
+ * compute the vertical diameter of the ellipse. (Semiminor axis) <!-- end-model-doc -->
+ *
+ * @return the value of the ' <em>Vertical Diameter Computation Expression</em>' attribute.
+ * @see #setVerticalDiameterComputationExpression(String)
+ * @see org.eclipse.sirius.diagram.description.style.StylePackage#getEllipseNodeDescription_VerticalDiameterComputationExpression()
+ * @model default="0" dataType= "org.eclipse.sirius.viewpoint.description.InterpretedExpression" annotation=
+ * "http://www.eclipse.org/sirius/interpreted/expression/returnType returnType='an integer.'"
+ * @generated
+ */
+ String getVerticalDiameterComputationExpression();
+
+ /**
+ * Sets the value of the
+ * '{@link org.eclipse.sirius.diagram.description.style.EllipseNodeDescription#getVerticalDiameterComputationExpression
+ * <em>Vertical Diameter Computation Expression</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
+ * @param value
+ * the new value of the '<em>Vertical Diameter Computation Expression</em>' attribute.
+ * @see #getVerticalDiameterComputationExpression()
+ * @generated
+ */
+ void setVerticalDiameterComputationExpression(String value);
+
+} // EllipseNodeDescription

Back to the top