blob: 99a2abe7ae37e0c397ef3f1252d81b19141baf92 [file] [log] [blame]
/*******************************************************************************
* 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.tests.sample.migration.migrationmodeler;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Ellipse</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Ellipse#getHorizontalDiameter
* <em>Horizontal Diameter</em>}</li>
* <li>
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Ellipse#getVerticalDiameter
* <em>Vertical Diameter</em>}</li>
* <li>
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Ellipse#getColor
* <em>Color</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getEllipse()
* @model
* @generated
*/
public interface Ellipse extends NodeStyle {
/**
* Returns the value of the '<em><b>Horizontal Diameter</b></em>' attribute.
* The default value is <code>"0"</code>. <!-- begin-user-doc --> <!--
* end-user-doc --> <!-- begin-model-doc --> The horizontal diameter size of
* the ellipse. (Semimajor axis) <!-- end-model-doc -->
*
* @return the value of the '<em>Horizontal Diameter</em>' attribute.
* @see #setHorizontalDiameter(Integer)
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getEllipse_HorizontalDiameter()
* @model default="0"
* @generated
*/
Integer getHorizontalDiameter();
/**
* Sets the value of the '
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Ellipse#getHorizontalDiameter
* <em>Horizontal Diameter</em>}' attribute. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @param value
* the new value of the '<em>Horizontal Diameter</em>' attribute.
* @see #getHorizontalDiameter()
* @generated
*/
void setHorizontalDiameter(Integer value);
/**
* Returns the value of the '<em><b>Vertical Diameter</b></em>' attribute.
* The default value is <code>"0"</code>. <!-- begin-user-doc --> <!--
* end-user-doc --> <!-- begin-model-doc --> The vertical diameter of the
* ellipse. (Semiminor axis) <!-- end-model-doc -->
*
* @return the value of the '<em>Vertical Diameter</em>' attribute.
* @see #setVerticalDiameter(Integer)
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getEllipse_VerticalDiameter()
* @model default="0"
* @generated
*/
Integer getVerticalDiameter();
/**
* Sets the value of the '
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Ellipse#getVerticalDiameter
* <em>Vertical Diameter</em>}' attribute. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @param value
* the new value of the '<em>Vertical Diameter</em>' attribute.
* @see #getVerticalDiameter()
* @generated
*/
void setVerticalDiameter(Integer value);
/**
* Returns the value of the '<em><b>Color</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Color</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Color</em>' containment reference.
* @see #setColor(Color)
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getEllipse_Color()
* @model containment="true"
* @generated
*/
Color getColor();
/**
* Sets the value of the '
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Ellipse#getColor
* <em>Color</em>}' containment reference. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @param value
* the new value of the '<em>Color</em>' containment reference.
* @see #getColor()
* @generated
*/
void setColor(Color value);
} // Ellipse