com.powsybl.openrao.data.crac.io.cim.xsd.SharedDomain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-rao-crac-io-cim Show documentation
Show all versions of open-rao-crac-io-cim Show documentation
CRAC creator implementation for CRAC specific to SWE zone format
//
// 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Classe Java pour Shared_Domain complex type.
*
* Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
* {@code
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Shared_Domain", propOrder = {
"mrid"
})
public class SharedDomain {
@XmlElement(name = "mRID", required = true)
protected AreaIDString mrid;
/**
* Obtient la valeur de la propriété mrid.
*
* @return
* possible object is
* {@link AreaIDString }
*
*/
public AreaIDString getMRID() {
return mrid;
}
/**
* Définit la valeur de la propriété mrid.
*
* @param value
* allowed object is
* {@link AreaIDString }
*
*/
public void setMRID(AreaIDString value) {
this.mrid = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy