All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.dd.dc.Bounds Maven / Gradle / Ivy

There is a newer version: 7.54.0.Final
Show newest version
/**
 * 
 * 
 * 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