![JAR search and dependency download from the Maven repository](/logo.png)
fr.insee.eno.parameters.XFORMSParameters Maven / Gradle / Ivy
Show all versions of eno-core Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// 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.10 at 12:34:23 PM UTC
//
package fr.insee.eno.parameters;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for XFORMSParameters complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="XFORMSParameters">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="NumericExample" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="Deblocage" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="Satisfaction" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="LengthOfLongTable" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="DecimalSeparator" type="{}DecimalSeparator" minOccurs="0"/>
* <sequence>
* <element name="Css" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "XFORMSParameters", propOrder = {
"numericExample",
"deblocage",
"satisfaction",
"lengthOfLongTable",
"decimalSeparator",
"css"
})
public class XFORMSParameters {
@XmlElement(name = "NumericExample", defaultValue = "false")
protected Boolean numericExample;
@XmlElement(name = "Deblocage", defaultValue = "false")
protected Boolean deblocage;
@XmlElement(name = "Satisfaction", defaultValue = "false")
protected Boolean satisfaction;
@XmlElement(name = "LengthOfLongTable", defaultValue = "7")
protected Integer lengthOfLongTable;
@XmlElement(name = "DecimalSeparator", defaultValue = ",")
@XmlSchemaType(name = "token")
protected DecimalSeparator decimalSeparator;
@XmlElement(name = "Css")
protected List css;
/**
* Gets the value of the numericExample property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isNumericExample() {
return numericExample;
}
/**
* Sets the value of the numericExample property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setNumericExample(Boolean value) {
this.numericExample = value;
}
/**
* Gets the value of the deblocage property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDeblocage() {
return deblocage;
}
/**
* Sets the value of the deblocage property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDeblocage(Boolean value) {
this.deblocage = value;
}
/**
* Gets the value of the satisfaction property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSatisfaction() {
return satisfaction;
}
/**
* Sets the value of the satisfaction property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSatisfaction(Boolean value) {
this.satisfaction = value;
}
/**
* Gets the value of the lengthOfLongTable property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getLengthOfLongTable() {
return lengthOfLongTable;
}
/**
* Sets the value of the lengthOfLongTable property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setLengthOfLongTable(Integer value) {
this.lengthOfLongTable = value;
}
/**
* Gets the value of the decimalSeparator property.
*
* @return
* possible object is
* {@link DecimalSeparator }
*
*/
public DecimalSeparator getDecimalSeparator() {
return decimalSeparator;
}
/**
* Sets the value of the decimalSeparator property.
*
* @param value
* allowed object is
* {@link DecimalSeparator }
*
*/
public void setDecimalSeparator(DecimalSeparator value) {
this.decimalSeparator = value;
}
/**
* Gets the value of the css 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 css property.
*
*
* For example, to add a new item, do as follows:
*
* getCss().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getCss() {
if (css == null) {
css = new ArrayList();
}
return this.css;
}
}