/** * 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.ihc.ws.datatypes; /** * <p> * Java class for WSFloatingPointValue complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="WSFloatingPointValue"> * <complexContent> * <extension base="{utcs.values}WSResourceValue"> * <sequence> * <element name="maximumValue" type="{http://www.w3.org/2001/XMLSchema}double"/> * <element name="minimumValue" type="{http://www.w3.org/2001/XMLSchema}double"/> * <element name="floatingPointValue" type="{http://www.w3.org/2001/XMLSchema}double"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ public class WSFloatingPointValue extends WSResourceValue { protected double maximumValue; protected double minimumValue; protected double floatingPointValue; /** * Gets the value of the maximumValue property. * */ public double getMaximumValue() { return maximumValue; } /** * Sets the value of the maximumValue property. * */ public void setMaximumValue(double value) { this.maximumValue = value; } /** * Gets the value of the minimumValue property. * */ public double getMinimumValue() { return minimumValue; } /** * Sets the value of the minimumValue property. * */ public void setMinimumValue(double value) { this.minimumValue = value; } /** * Gets the value of the floatingPointValue property. * */ public double getFloatingPointValue() { return floatingPointValue; } /** * Sets the value of the floatingPointValue property. * */ public void setFloatingPointValue(double value) { this.floatingPointValue = value; } }