blob: 883d7f7b1b3451150cf3d1299fc75304d1004473 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Xored Software Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.tesla.core.ui;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Rectangle</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.rcptt.tesla.core.ui.Rectangle#getX <em>X</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.core.ui.Rectangle#getY <em>Y</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.core.ui.Rectangle#getWidth <em>Width</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.core.ui.Rectangle#getHeight <em>Height</em>}</li>
* </ul>
*
* @see org.eclipse.rcptt.tesla.core.ui.UiPackage#getRectangle()
* @model
* @generated
*/
public interface Rectangle 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.rcptt.tesla.core.ui.UiPackage#getRectangle_X()
* @model
* @generated
*/
int getX();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.ui.Rectangle#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.rcptt.tesla.core.ui.UiPackage#getRectangle_Y()
* @model
* @generated
*/
int getY();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.ui.Rectangle#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);
/**
* Returns the value of the '<em><b>Width</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Width</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Width</em>' attribute.
* @see #setWidth(int)
* @see org.eclipse.rcptt.tesla.core.ui.UiPackage#getRectangle_Width()
* @model
* @generated
*/
int getWidth();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.ui.Rectangle#getWidth <em>Width</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Width</em>' attribute.
* @see #getWidth()
* @generated
*/
void setWidth(int value);
/**
* Returns the value of the '<em><b>Height</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Height</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Height</em>' attribute.
* @see #setHeight(int)
* @see org.eclipse.rcptt.tesla.core.ui.UiPackage#getRectangle_Height()
* @model
* @generated
*/
int getHeight();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.ui.Rectangle#getHeight <em>Height</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Height</em>' attribute.
* @see #getHeight()
* @generated
*/
void setHeight(int value);
} // Rectangle