blob: d861fbed8264b8ebaed1287c44c15da83da7da7a [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - 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:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
*/
package org.eclipse.osbp.ecview.core.extension.model.extension;
import org.eclipse.osbp.ecview.core.common.model.core.YOrientation;
import org.eclipse.osbp.ecview.core.common.model.core.YValueBindable;
import org.eclipse.osbp.ecview.core.common.model.datatypes.YDatadescription;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>YSlider</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSlider#getDatadescription <em>Datadescription</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSlider#getValue <em>Value</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSlider#getMaxValue <em>Max Value</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSlider#getMinValue <em>Min Value</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSlider#getResolution <em>Resolution</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSlider#getOrientation <em>Orientation</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYSlider()
* @model
* @generated
*/
public interface YSlider extends YInput, YValueBindable {
/**
* Returns the value of the '<em><b>Datadescription</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Datadescription</em>' reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Datadescription</em>' reference.
* @see #setDatadescription(YDatadescription)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYSlider_Datadescription()
* @model
* @generated
*/
YDatadescription getDatadescription();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSlider#getDatadescription <em>Datadescription</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Datadescription</em>' reference.
* @see #getDatadescription()
* @generated
*/
void setDatadescription(YDatadescription value);
/**
* Returns the value of the '<em><b>Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Value</em>' attribute.
* @see #setValue(double)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYSlider_Value()
* @model transient="true"
* @generated
*/
double getValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSlider#getValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' attribute.
* @see #getValue()
* @generated
*/
void setValue(double value);
/**
* Returns the value of the '<em><b>Max Value</b></em>' attribute.
* The default value is <code>"100"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Max Value</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Max Value</em>' attribute.
* @see #setMaxValue(double)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYSlider_MaxValue()
* @model default="100" transient="true"
* @generated
*/
double getMaxValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSlider#getMaxValue <em>Max Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Max Value</em>' attribute.
* @see #getMaxValue()
* @generated
*/
void setMaxValue(double value);
/**
* Returns the value of the '<em><b>Min Value</b></em>' attribute.
* The default value is <code>"0"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Min Value</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Min Value</em>' attribute.
* @see #setMinValue(double)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYSlider_MinValue()
* @model default="0" transient="true"
* @generated
*/
double getMinValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSlider#getMinValue <em>Min Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Min Value</em>' attribute.
* @see #getMinValue()
* @generated
*/
void setMinValue(double value);
/**
* Returns the value of the '<em><b>Resolution</b></em>' attribute.
* The default value is <code>"10"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Resolution</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Resolution</em>' attribute.
* @see #setResolution(int)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYSlider_Resolution()
* @model default="10" transient="true"
* @generated
*/
int getResolution();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSlider#getResolution <em>Resolution</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Resolution</em>' attribute.
* @see #getResolution()
* @generated
*/
void setResolution(int value);
/**
* Returns the value of the '<em><b>Orientation</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.ecview.core.common.model.core.YOrientation}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Orientation</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Orientation</em>' attribute.
* @see org.eclipse.osbp.ecview.core.common.model.core.YOrientation
* @see #setOrientation(YOrientation)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYSlider_Orientation()
* @model transient="true"
* @generated
*/
YOrientation getOrientation();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSlider#getOrientation <em>Orientation</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Orientation</em>' attribute.
* @see org.eclipse.osbp.ecview.core.common.model.core.YOrientation
* @see #getOrientation()
* @generated
*/
void setOrientation(YOrientation value);
} // YSlider