com.powsybl.glsk.cse.TDocumentScenario Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powsybl-glsk-document-cse Show documentation
Show all versions of powsybl-glsk-document-cse Show documentation
Model of GLSK according to CSE format with its importer.
The newest version!
//
// Ce fichier a été généré par Eclipse Implementation of JAXB, v3.0.2
// Voir https://eclipse-ee4j.github.io/jaxb-ri
// Toute modification apportée à ce fichier sera perdue lors de la recompilation du schéma source.
// Généré le : 2024.10.16 à 01:13:04 PM CEST
//
package com.powsybl.glsk.cse;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* Classe Java pour T_DocumentScenario complex type.
*
*
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
*
* <complexType name="T_DocumentScenario">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="v" use="required">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="Transit"/>
* <enumeration value="Import"/>
* <enumeration value="Export"/>
* </restriction>
* </simpleType>
* </attribute>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "T_DocumentScenario")
public class TDocumentScenario {
@XmlAttribute(name = "v", required = true)
protected String v;
/**
* Obtient la valeur de la propriété v.
*
* @return
* possible object is
* {@link String }
*
*/
public String getV() {
return v;
}
/**
* Définit la valeur de la propriété v.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setV(String value) {
this.v = value;
}
}