com.foursoft.harness.kbl.v24.KblFuse 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 Fuse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Fuse">
* <complexContent>
* <extension base="{http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema}Component">
* <sequence>
* <element name="Type" type="{http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema}Fuse_type" minOccurs="0"/>
* <element name="Nominal_current" type="{http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema}Numerical_value" minOccurs="0"/>
* <element name="Colour" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Fuse", namespace = "http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema", propOrder = {
"type",
"nominalCurrent",
"colour"
})
public class KblFuse
extends KblComponent
implements Serializable, Visitable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "Type")
protected KblFuseType type;
@XmlElement(name = "Nominal_current")
protected KblNumericalValue nominalCurrent;
@XmlElement(name = "Colour")
protected String colour;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link KblFuseType }
*
*/
public KblFuseType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link KblFuseType }
*
*/
public void setType(KblFuseType value) {
this.type = value;
}
/**
* Gets the value of the nominalCurrent property.
*
* @return
* possible object is
* {@link KblNumericalValue }
*
*/
public KblNumericalValue getNominalCurrent() {
return nominalCurrent;
}
/**
* Sets the value of the nominalCurrent property.
*
* @param value
* allowed object is
* {@link KblNumericalValue }
*
*/
public void setNominalCurrent(KblNumericalValue value) {
this.nominalCurrent = value;
}
/**
* Gets the value of the colour property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getColour() {
return colour;
}
/**
* Sets the value of the colour property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setColour(String value) {
this.colour = value;
}
publicR accept(Visitor aVisitor)
throws E
{
return aVisitor.visitKblFuse(this);
}
public boolean beforeMarshal(Marshaller marshaller) {
super.beforeMarshal(marshaller);
return true;
}
}