org.eclipse.dd.dc.Bounds Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kie-wb-common-stunner-bpmn-emf Show documentation
Show all versions of kie-wb-common-stunner-bpmn-emf Show documentation
Kie Workbench - Common - Stunner - BPMN Definition Set - GWT Support for Eclipse EMF/XMI
/**
*
*
* Copyright (c) 2010 SAP AG.
* 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Reiner Hille-Doering (SAP AG) - initial API and implementation and/or initial documentation
*
*
*/
package org.eclipse.dd.dc;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Bounds'.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.dd.dc.Bounds#getHeight Height}
* - {@link org.eclipse.dd.dc.Bounds#getWidth Width}
* - {@link org.eclipse.dd.dc.Bounds#getX X}
* - {@link org.eclipse.dd.dc.Bounds#getY Y}
*
*
* @see org.eclipse.dd.dc.DcPackage#getBounds()
* @model extendedMetaData="name='Bounds' kind='empty'"
* @generated
*/
public interface Bounds extends EObject {
/**
* Returns the value of the 'Height' attribute.
*
*
* @return the value of the 'Height' attribute.
* @see #setHeight(float)
* @see org.eclipse.dd.dc.DcPackage#getBounds_Height()
* @model required="true" ordered="false"
* extendedMetaData="kind='attribute' name='height'"
* @generated
*/
float getHeight();
/**
* Sets the value of the '{@link org.eclipse.dd.dc.Bounds#getHeight Height}' attribute.
*
*
* @param value the new value of the 'Height' attribute.
* @see #getHeight()
* @generated
*/
void setHeight(float value);
/**
* Returns the value of the 'Width' attribute.
*
*
* @return the value of the 'Width' attribute.
* @see #setWidth(float)
* @see org.eclipse.dd.dc.DcPackage#getBounds_Width()
* @model required="true" ordered="false"
* extendedMetaData="kind='attribute' name='width'"
* @generated
*/
float getWidth();
/**
* Sets the value of the '{@link org.eclipse.dd.dc.Bounds#getWidth Width}' attribute.
*
*
* @param value the new value of the 'Width' attribute.
* @see #getWidth()
* @generated
*/
void setWidth(float value);
/**
* Returns the value of the 'X' attribute.
* The default value is "0"
.
*
*
* @return the value of the 'X' attribute.
* @see #setX(float)
* @see org.eclipse.dd.dc.DcPackage#getBounds_X()
* @model default="0" required="true" ordered="false"
* extendedMetaData="kind='attribute' name='x'"
* @generated
*/
float getX();
/**
* Sets the value of the '{@link org.eclipse.dd.dc.Bounds#getX X}' attribute.
*
*
* @param value the new value of the 'X' attribute.
* @see #getX()
* @generated
*/
void setX(float value);
/**
* Returns the value of the 'Y' attribute.
* The default value is "0"
.
*
*
* @return the value of the 'Y' attribute.
* @see #setY(float)
* @see org.eclipse.dd.dc.DcPackage#getBounds_Y()
* @model default="0" required="true" ordered="false"
* extendedMetaData="kind='attribute' name='y'"
* @generated
*/
float getY();
/**
* Sets the value of the '{@link org.eclipse.dd.dc.Bounds#getY Y}' attribute.
*
*
* @param value the new value of the 'Y' attribute.
* @see #getY()
* @generated
*/
void setY(float value);
} // Bounds
© 2015 - 2025 Weber Informatics LLC | Privacy Policy