All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.farao_community.farao.cse.data.xsd.Xnode Maven / Gradle / Ivy

There is a newer version: 1.38.0
Show newest version
//
// 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.10.29 at 10:09:22 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.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for xnode complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="xnode">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="area1" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="area2" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="subarea1" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="subarea2" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "xnode", namespace = "http://www.rte-france.com/gsr") public class Xnode { @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "area1", required = true) protected String area1; @XmlAttribute(name = "area2", required = true) protected String area2; @XmlAttribute(name = "subarea1") protected String subarea1; @XmlAttribute(name = "subarea2") protected String subarea2; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the area1 property. * * @return * possible object is * {@link String } * */ public String getArea1() { return area1; } /** * Sets the value of the area1 property. * * @param value * allowed object is * {@link String } * */ public void setArea1(String value) { this.area1 = value; } /** * Gets the value of the area2 property. * * @return * possible object is * {@link String } * */ public String getArea2() { return area2; } /** * Sets the value of the area2 property. * * @param value * allowed object is * {@link String } * */ public void setArea2(String value) { this.area2 = value; } /** * Gets the value of the subarea1 property. * * @return * possible object is * {@link String } * */ public String getSubarea1() { return subarea1; } /** * Sets the value of the subarea1 property. * * @param value * allowed object is * {@link String } * */ public void setSubarea1(String value) { this.subarea1 = value; } /** * Gets the value of the subarea2 property. * * @return * possible object is * {@link String } * */ public String getSubarea2() { return subarea2; } /** * Sets the value of the subarea2 property. * * @param value * allowed object is * {@link String } * */ public void setSubarea2(String value) { this.subarea2 = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy