com.foursoft.harness.kbl.v24.KblNumericalValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kbl-v24 Show documentation
Show all versions of kbl-v24 Show documentation
The model for KBL version 2.4.
//
// 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 Numerical_value complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Numerical_value">
* <complexContent>
* <extension base="{http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema}Value_with_unit">
* <sequence>
* <element name="Value_component" type="{http://www.w3.org/2001/XMLSchema}double"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Numerical_value", namespace = "http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema", propOrder = {
"valueComponent"
})
public class KblNumericalValue
extends KblValueWithUnit
implements Serializable, Visitable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "Value_component")
protected double valueComponent;
/**
* Gets the value of the valueComponent property.
*
*/
public double getValueComponent() {
return valueComponent;
}
/**
* Sets the value of the valueComponent property.
*
*/
public void setValueComponent(double value) {
this.valueComponent = value;
}
publicR accept(Visitor aVisitor)
throws E
{
return aVisitor.visitKblNumericalValue(this);
}
public boolean beforeMarshal(Marshaller marshaller) {
super.beforeMarshal(marshaller);
return true;
}
}