blob: e18c2932563e9befd1f60010ecef9c47a5ab527d [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;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Point</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Point#getX
* <em>X</em>}</li>
* <li>
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Point#getY
* <em>Y</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getPoint()
* @model
* @generated
*/
public interface Point extends EObject {
/**
* Returns the value of the '<em><b>X</b></em>' attribute. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>X</em>' attribute isn't clear, there really
* should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>X</em>' attribute.
* @see #setX(int)
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getPoint_X()
* @model
* @generated
*/
int getX();
/**
* Sets the value of the '
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Point#getX
* <em>X</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>X</em>' attribute.
* @see #getX()
* @generated
*/
void setX(int value);
/**
* Returns the value of the '<em><b>Y</b></em>' attribute. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Y</em>' attribute isn't clear, there really
* should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Y</em>' attribute.
* @see #setY(int)
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getPoint_Y()
* @model
* @generated
*/
int getY();
/**
* Sets the value of the '
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Point#getY
* <em>Y</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Y</em>' attribute.
* @see #getY()
* @generated
*/
void setY(int value);
} // Point