com.farao_community.farao.cse.data.xsd.TNTCValues Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gridcapa-cse-data Show documentation
Show all versions of gridcapa-cse-data Show documentation
Module that manages specific data format for CSE processes
//
// 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: 2024.03.12 at 10:04:12 AM UTC
//
package com.farao_community.farao.cse.data.xsd;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for T_NTCValues complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="T_NTCValues">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="SpecialDays" type="{}T_SpecialDays" minOccurs="0"/>
* <element name="BasicDays" type="{}T_BasicDays" minOccurs="0"/>
* <element name="SpecialLines" type="{}T_SpecialLines" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "T_NTCValues", namespace = "", propOrder = {
"specialDays",
"basicDays",
"specialLines"
})
public class TNTCValues {
@XmlElement(name = "SpecialDays")
protected TSpecialDays specialDays;
@XmlElement(name = "BasicDays")
protected TBasicDays basicDays;
@XmlElement(name = "SpecialLines")
protected TSpecialLines specialLines;
/**
* Gets the value of the specialDays property.
*
* @return
* possible object is
* {@link TSpecialDays }
*
*/
public TSpecialDays getSpecialDays() {
return specialDays;
}
/**
* Sets the value of the specialDays property.
*
* @param value
* allowed object is
* {@link TSpecialDays }
*
*/
public void setSpecialDays(TSpecialDays value) {
this.specialDays = value;
}
/**
* Gets the value of the basicDays property.
*
* @return
* possible object is
* {@link TBasicDays }
*
*/
public TBasicDays getBasicDays() {
return basicDays;
}
/**
* Sets the value of the basicDays property.
*
* @param value
* allowed object is
* {@link TBasicDays }
*
*/
public void setBasicDays(TBasicDays value) {
this.basicDays = value;
}
/**
* Gets the value of the specialLines property.
*
* @return
* possible object is
* {@link TSpecialLines }
*
*/
public TSpecialLines getSpecialLines() {
return specialLines;
}
/**
* Sets the value of the specialLines property.
*
* @param value
* allowed object is
* {@link TSpecialLines }
*
*/
public void setSpecialLines(TSpecialLines value) {
this.specialLines = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy