com.foursoft.vecmodel.vec113.VecBatterySpecification Maven / Gradle / Ivy
//
// 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: 2021.08.10 at 09:49:21 AM UTC
//
package com.foursoft.vecmodel.vec113;
import java.io.Serializable;
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.vecmodel.vec113.visitor.Visitable;
import com.foursoft.vecmodel.vec113.visitor.Visitor;
/**
* Specification of the electrological aspects of a battery.
*
* Java class for BatterySpecification complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="BatterySpecification">
* <complexContent>
* <extension base="{http://www.prostep.org/ecad-if/2011/vec}EEComponentSpecification">
* <sequence>
* <element name="U" type="{http://www.prostep.org/ecad-if/2011/vec}NumericalValue" minOccurs="0"/>
* <element name="I" type="{http://www.prostep.org/ecad-if/2011/vec}NumericalValue" minOccurs="0"/>
* <element name="ICool" type="{http://www.prostep.org/ecad-if/2011/vec}NumericalValue" minOccurs="0"/>
* <element name="Capacity" type="{http://www.prostep.org/ecad-if/2011/vec}NumericalValue" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BatterySpecification", propOrder = {
"u",
"i",
"iCool",
"capacity"
})
public class VecBatterySpecification
extends VecEEComponentSpecification
implements Serializable, Visitable
{
private final static long serialVersionUID = 1L;
/**
* Specifies the nominal voltage of the battery.
*
*/
@XmlElement(name = "U")
protected VecNumericalValue u;
/**
* Specifies the current the battery provides.
*
*/
@XmlElement(name = "I")
protected VecNumericalValue i;
/**
* Specifies the battery's current in cool state.
*
*/
@XmlElement(name = "ICool")
protected VecNumericalValue iCool;
/**
* Specifies the power capacity of the battery.
*
*/
@XmlElement(name = "Capacity")
protected VecNumericalValue capacity;
/**
* Gets the value of the u property.
*
*
Specifies the nominal voltage of the battery.
*
* @return
* possible object is
* {@link VecNumericalValue }
*
*/
public VecNumericalValue getU() {
return u;
}
/**
* Sets the value of the u property.
*
* @param value
* allowed object is
* {@link VecNumericalValue }
*
* @see #getU()
*/
public void setU(VecNumericalValue value) {
this.u = value;
}
/**
* Gets the value of the i property.
*
*
Specifies the current the battery provides.
*
* @return
* possible object is
* {@link VecNumericalValue }
*
*/
public VecNumericalValue getI() {
return i;
}
/**
* Sets the value of the i property.
*
* @param value
* allowed object is
* {@link VecNumericalValue }
*
* @see #getI()
*/
public void setI(VecNumericalValue value) {
this.i = value;
}
/**
* Gets the value of the iCool property.
*
*
Specifies the battery's current in cool state.
*
* @return
* possible object is
* {@link VecNumericalValue }
*
*/
public VecNumericalValue getICool() {
return iCool;
}
/**
* Sets the value of the iCool property.
*
* @param value
* allowed object is
* {@link VecNumericalValue }
*
* @see #getICool()
*/
public void setICool(VecNumericalValue value) {
this.iCool = value;
}
/**
* Gets the value of the capacity property.
*
*
Specifies the power capacity of the battery.
*
* @return
* possible object is
* {@link VecNumericalValue }
*
*/
public VecNumericalValue getCapacity() {
return capacity;
}
/**
* Sets the value of the capacity property.
*
* @param value
* allowed object is
* {@link VecNumericalValue }
*
* @see #getCapacity()
*/
public void setCapacity(VecNumericalValue value) {
this.capacity = value;
}
publicR accept(Visitor aVisitor)
throws E
{
return aVisitor.visitVecBatterySpecification(this);
}
}