/** * Copyright (c) 2010-2016 by the respective copyright holders. * * 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 */ package org.openhab.binding.tinkerforge.internal.model; import java.math.BigDecimal; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Dimmable Configuration</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.openhab.binding.tinkerforge.internal.model.DimmableConfiguration#getMinValue <em>Min Value</em>}</li> * <li>{@link org.openhab.binding.tinkerforge.internal.model.DimmableConfiguration#getMaxValue <em>Max Value</em>}</li> * </ul> * * @see org.openhab.binding.tinkerforge.internal.model.ModelPackage#getDimmableConfiguration() * @model * @generated */ public interface DimmableConfiguration extends TFConfig { /** * Returns the value of the '<em><b>Min Value</b></em>' attribute. * <!-- 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(BigDecimal) * @see org.openhab.binding.tinkerforge.internal.model.ModelPackage#getDimmableConfiguration_MinValue() * @model unique="false" * @generated */ BigDecimal getMinValue(); /** * Sets the value of the '{@link org.openhab.binding.tinkerforge.internal.model.DimmableConfiguration#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(BigDecimal value); /** * Returns the value of the '<em><b>Max Value</b></em>' attribute. * <!-- 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(BigDecimal) * @see org.openhab.binding.tinkerforge.internal.model.ModelPackage#getDimmableConfiguration_MaxValue() * @model unique="false" * @generated */ BigDecimal getMaxValue(); /** * Sets the value of the '{@link org.openhab.binding.tinkerforge.internal.model.DimmableConfiguration#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(BigDecimal value); } // DimmableConfiguration