org.omg.dd.dc.Bounds Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.omg.bpmn.model Show documentation
Show all versions of org.omg.bpmn.model Show documentation
Ecore and generated code for org.omg.bpmn2
The newest version!
/*
* Copyright (c) 2012 - 2024 Data In Motion and others.
* All rights reserved.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Mark Hoffmann - initial API and implementation
*/
package org.omg.dd.dc;
import org.eclipse.emf.ecore.EObject;
import org.osgi.annotation.versioning.ProviderType;
/**
*
* A representation of the model object 'Bounds'.
*
*
*
* The following features are supported:
*
*
* - {@link org.omg.dd.dc.Bounds#getHeight Height}
* - {@link org.omg.dd.dc.Bounds#getWidth Width}
* - {@link org.omg.dd.dc.Bounds#getX X}
* - {@link org.omg.dd.dc.Bounds#getY Y}
*
*
* @see org.omg.dd.dc.DcPackage#getBounds()
* @model extendedMetaData="name='Bounds' kind='empty'"
* @generated
*/
@ProviderType
public interface Bounds extends EObject {
/**
* Returns the value of the 'Height' attribute.
*
*
* @return the value of the 'Height' attribute.
* @see #setHeight(float)
* @see org.omg.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.omg.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.omg.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.omg.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.omg.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.omg.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.omg.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.omg.dd.dc.Bounds#getY Y}' attribute.
*
*
* @param value the new value of the 'Y' attribute.
* @see #getY()
* @generated
*/
void setY(float value);
} // Bounds