blob: 76e10feae4094da5cff31065e78183f466fe0c99 [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.vaaclipse.ui.preferences.model;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Scale Field Editor</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>
* {@link org.eclipse.osbp.vaaclipse.ui.preferences.model.ScaleFieldEditor#getMinValue
* <em>Min Value</em>}</li>
* <li>
* {@link org.eclipse.osbp.vaaclipse.ui.preferences.model.ScaleFieldEditor#getMaxValue
* <em>Max Value</em>}</li>
* <li>
* {@link org.eclipse.osbp.vaaclipse.ui.preferences.model.ScaleFieldEditor#getIncrementValue
* <em>Increment Value</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.vaaclipse.ui.preferences.model.metadata.PreferencesPackage#getScaleFieldEditor()
* @model superTypes=
* "org.eclipse.osbp.vaaclipse.ui.preferences.model.FieldEditor<org.eclipse.emf.ecore.EIntegerObject>"
* @generated
*/
public interface ScaleFieldEditor extends FieldEditor<Integer> {
/**
* 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...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Min Value</em>' attribute.
* @see #setMinValue(Integer)
* @see org.eclipse.osbp.vaaclipse.ui.preferences.model.metadata.PreferencesPackage#getScaleFieldEditor_MinValue()
* @model default="0"
* @generated
*/
Integer getMinValue();
/**
* Sets the value of the '
* {@link org.eclipse.osbp.vaaclipse.ui.preferences.model.ScaleFieldEditor#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(Integer 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...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Max Value</em>' attribute.
* @see #setMaxValue(Integer)
* @see org.eclipse.osbp.vaaclipse.ui.preferences.model.metadata.PreferencesPackage#getScaleFieldEditor_MaxValue()
* @model default="100"
* @generated
*/
Integer getMaxValue();
/**
* Sets the value of the '
* {@link org.eclipse.osbp.vaaclipse.ui.preferences.model.ScaleFieldEditor#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(Integer value);
/**
* Returns the value of the '<em><b>Increment Value</b></em>' attribute. The
* default value is <code>"1"</code>. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Increment Value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Increment Value</em>' attribute.
* @see #setIncrementValue(Integer)
* @see org.eclipse.osbp.vaaclipse.ui.preferences.model.metadata.PreferencesPackage#getScaleFieldEditor_IncrementValue()
* @model default="1"
* @generated
*/
Integer getIncrementValue();
/**
* Sets the value of the '
* {@link org.eclipse.osbp.vaaclipse.ui.preferences.model.ScaleFieldEditor#getIncrementValue
* <em>Increment Value</em>}' attribute. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @param value
* the new value of the '<em>Increment Value</em>' attribute.
* @see #getIncrementValue()
* @generated
*/
void setIncrementValue(Integer value);
} // ScaleFieldEditor