com.farao_community.farao.cse.data.xsd.ntc2.Interval 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:13 AM UTC
//
package com.farao_community.farao.cse.data.xsd.ntc2;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{}Pos"/>
* <element ref="{}Qty"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"pos",
"qty"
})
@XmlRootElement(name = "Interval")
public class Interval {
@XmlElement(name = "Pos", required = true)
protected Pos pos;
@XmlElement(name = "Qty", required = true)
protected Qty qty;
/**
* Gets the value of the pos property.
*
* @return
* possible object is
* {@link Pos }
*
*/
public Pos getPos() {
return pos;
}
/**
* Sets the value of the pos property.
*
* @param value
* allowed object is
* {@link Pos }
*
*/
public void setPos(Pos value) {
this.pos = value;
}
/**
* Gets the value of the qty property.
*
* @return
* possible object is
* {@link Qty }
*
*/
public Qty getQty() {
return qty;
}
/**
* Sets the value of the qty property.
*
* @param value
* allowed object is
* {@link Qty }
*
*/
public void setQty(Qty value) {
this.qty = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy