All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.foursoft.harness.kbl.v24.KblValueRange Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2022.07.05 at 05:22:49 PM UTC 
//


package com.foursoft.harness.kbl.v24;

import java.io.Serializable;
import javax.xml.bind.Marshaller;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.foursoft.harness.kbl.v24.visitor.Visitable;
import com.foursoft.harness.kbl.v24.visitor.Visitor;


/**
 * 

Java class for Value_range complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Value_range">
 *   <complexContent>
 *     <extension base="{http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema}Value_with_unit">
 *       <sequence>
 *         <element name="Minimum" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="Maximum" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Value_range", namespace = "http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema", propOrder = { "minimum", "maximum" }) public class KblValueRange extends KblValueWithUnit implements Serializable, Visitable { private final static long serialVersionUID = 1L; @XmlElement(name = "Minimum") protected double minimum; @XmlElement(name = "Maximum") protected double maximum; /** * Gets the value of the minimum property. * */ public double getMinimum() { return minimum; } /** * Sets the value of the minimum property. * */ public void setMinimum(double value) { this.minimum = value; } /** * Gets the value of the maximum property. * */ public double getMaximum() { return maximum; } /** * Sets the value of the maximum property. * */ public void setMaximum(double value) { this.maximum = value; } publicR accept(Visitor aVisitor) throws E { return aVisitor.visitKblValueRange(this); } public boolean beforeMarshal(Marshaller marshaller) { super.beforeMarshal(marshaller); return true; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy