blob: 4e810408699d221956145ecf604d5539e09db90d [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.core.common.model.core;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>YUi Heightable</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.core.common.model.core.YHeightable#getHeight <em>Height</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.core.common.model.core.YHeightable#getHeightUnit <em>Height Unit</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.core.common.model.core.CoreModelPackage#getYHeightable()
* @model interface="true" abstract="true"
* @generated
*/
public interface YHeightable extends EObject {
/**
* Returns the value of the '<em><b>Height</b></em>' attribute.
* The default value is <code>"100"</code>.
* <!-- 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...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Height</em>' attribute.
* @see #setHeight(int)
* @see org.eclipse.osbp.ecview.core.common.model.core.CoreModelPackage#getYHeightable_Height()
* @model default="100"
* @generated
*/
int getHeight();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.common.model.core.YHeightable#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);
/**
* Returns the value of the '<em><b>Height Unit</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.ecview.core.common.model.core.YUnit}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Height Unit</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Height Unit</em>' attribute.
* @see org.eclipse.osbp.ecview.core.common.model.core.YUnit
* @see #setHeightUnit(YUnit)
* @see org.eclipse.osbp.ecview.core.common.model.core.CoreModelPackage#getYHeightable_HeightUnit()
* @model
* @generated
*/
YUnit getHeightUnit();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.common.model.core.YHeightable#getHeightUnit <em>Height Unit</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Height Unit</em>' attribute.
* @see org.eclipse.osbp.ecview.core.common.model.core.YUnit
* @see #getHeightUnit()
* @generated
*/
void setHeightUnit(YUnit value);
} // YUiHeightable