com.powsybl.openrao.data.crac.io.cim.xsd.Point Maven / Gradle / Ivy
Show all versions of open-rao-crac-io-cim Show documentation
//
// Ce fichier a été généré par Eclipse Implementation of JAXB, v4.0.5
// Voir https://eclipse-ee4j.github.io/jaxb-ri
// Toute modification apportée à ce fichier sera perdue lors de la recompilation du schéma source.
//
package com.powsybl.openrao.data.crac.io.cim.xsd;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Classe Java pour Point complex type.
*
* Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Point", propOrder = {
"position",
"series",
"reason"
})
public class Point {
@XmlSchemaType(name = "integer")
protected int position;
@XmlElement(name = "Series", required = true)
protected List series;
@XmlElement(name = "Reason")
protected List reason;
/**
* Obtient la valeur de la propriété position.
*
*/
public int getPosition() {
return position;
}
/**
* Définit la valeur de la propriété position.
*
*/
public void setPosition(int value) {
this.position = value;
}
/**
* Gets the value of the series property.
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the series property.
*
*
* For example, to add a new item, do as follows:
*
*
* getSeries().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Series }
*
*
*
* @return
* The value of the series property.
*/
public List getSeries() {
if (series == null) {
series = new ArrayList<>();
}
return this.series;
}
/**
* Gets the value of the reason property.
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the reason property.
*
*
* For example, to add a new item, do as follows:
*
*
* getReason().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Reason }
*
*
*
* @return
* The value of the reason property.
*/
public List getReason() {
if (reason == null) {
reason = new ArrayList<>();
}
return this.reason;
}
}