/** * 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; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>TF Brick DC Configuration</b></em>'. * * @author Theo Weiss * @since 1.3.0 * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.openhab.binding.tinkerforge.internal.model.TFBrickDCConfiguration#getVelocity * <em>Velocity</em>}</li> * <li>{@link org.openhab.binding.tinkerforge.internal.model.TFBrickDCConfiguration#getAcceleration * <em>Acceleration</em>}</li> * <li>{@link org.openhab.binding.tinkerforge.internal.model.TFBrickDCConfiguration#getPwmFrequency <em>Pwm * Frequency</em>}</li> * <li>{@link org.openhab.binding.tinkerforge.internal.model.TFBrickDCConfiguration#getDriveMode <em>Drive * Mode</em>}</li> * </ul> * * @see org.openhab.binding.tinkerforge.internal.model.ModelPackage#getTFBrickDCConfiguration() * @model * @generated */ public interface TFBrickDCConfiguration extends DimmableConfiguration, TFBaseConfiguration { /** * Returns the value of the '<em><b>Velocity</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Velocity</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Velocity</em>' attribute. * @see #setVelocity(short) * @see org.openhab.binding.tinkerforge.internal.model.ModelPackage#getTFBrickDCConfiguration_Velocity() * @model unique="false" * @generated */ short getVelocity(); /** * Sets the value of the '{@link org.openhab.binding.tinkerforge.internal.model.TFBrickDCConfiguration#getVelocity * <em>Velocity</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @param value the new value of the '<em>Velocity</em>' attribute. * @see #getVelocity() * @generated */ void setVelocity(short value); /** * Returns the value of the '<em><b>Acceleration</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Acceleration</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Acceleration</em>' attribute. * @see #setAcceleration(int) * @see org.openhab.binding.tinkerforge.internal.model.ModelPackage#getTFBrickDCConfiguration_Acceleration() * @model unique="false" * @generated */ int getAcceleration(); /** * Sets the value of the * '{@link org.openhab.binding.tinkerforge.internal.model.TFBrickDCConfiguration#getAcceleration * <em>Acceleration</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @param value the new value of the '<em>Acceleration</em>' attribute. * @see #getAcceleration() * @generated */ void setAcceleration(int value); /** * Returns the value of the '<em><b>Pwm Frequency</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Pwm Frequency</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Pwm Frequency</em>' attribute. * @see #setPwmFrequency(int) * @see org.openhab.binding.tinkerforge.internal.model.ModelPackage#getTFBrickDCConfiguration_PwmFrequency() * @model unique="false" * @generated */ int getPwmFrequency(); /** * Sets the value of the * '{@link org.openhab.binding.tinkerforge.internal.model.TFBrickDCConfiguration#getPwmFrequency <em>Pwm * Frequency</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @param value the new value of the '<em>Pwm Frequency</em>' attribute. * @see #getPwmFrequency() * @generated */ void setPwmFrequency(int value); /** * Returns the value of the '<em><b>Drive Mode</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Drive Mode</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Drive Mode</em>' attribute. * @see #setDriveMode(String) * @see org.openhab.binding.tinkerforge.internal.model.ModelPackage#getTFBrickDCConfiguration_DriveMode() * @model unique="false" * @generated */ String getDriveMode(); /** * Sets the value of the '{@link org.openhab.binding.tinkerforge.internal.model.TFBrickDCConfiguration#getDriveMode * <em>Drive Mode</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @param value the new value of the '<em>Drive Mode</em>' attribute. * @see #getDriveMode() * @generated */ void setDriveMode(String value); } // TFBrickDCConfiguration