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

fr.insee.eno.parameters.Parameters Maven / Gradle / Ivy

Go to download

Eno is a tool that generates survey questionnaires starting from their formal description in DDI

The newest version!
//
// 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 Parameters complex type. * *

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

 * <complexType name="Parameters">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="Context" type="{}Context"/>
 *         <element name="Campagne" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Languages" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="Language" type="{}Language" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="BeginQuestion" type="{}BeginQuestion" minOccurs="0"/>
 *         <element name="EndQuestion" type="{}EndQuestion" minOccurs="0"/>
 *         <element name="xforms-parameters" type="{}XFORMSParameters" minOccurs="0"/>
 *         <element name="fo-parameters" type="{}FOParameters" minOccurs="0"/>
 *         <element name="lunatic-xml-parameters" type="{}LunaticXMLParameters" minOccurs="0"/>
 *         <element name="fodt-parameters" type="{}FODTParameters" minOccurs="0"/>
 *         <element name="Numerotation" type="{}GlobalNumbering" minOccurs="0"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Parameters", propOrder = { }) public class Parameters { @XmlElement(name = "Context", required = true) @XmlSchemaType(name = "token") protected Context context; @XmlElement(name = "Campagne", required = true) protected String campagne; @XmlElement(name = "Languages") protected Parameters.Languages languages; @XmlElement(name = "BeginQuestion") protected BeginQuestion beginQuestion; @XmlElement(name = "EndQuestion") protected EndQuestion endQuestion; @XmlElement(name = "xforms-parameters") protected XFORMSParameters xformsParameters; @XmlElement(name = "fo-parameters") protected FOParameters foParameters; @XmlElement(name = "lunatic-xml-parameters") protected LunaticXMLParameters lunaticXmlParameters; @XmlElement(name = "fodt-parameters") protected FODTParameters fodtParameters; @XmlElement(name = "Numerotation") protected GlobalNumbering numerotation; /** * Gets the value of the context property. * * @return * possible object is * {@link Context } * */ public Context getContext() { return context; } /** * Sets the value of the context property. * * @param value * allowed object is * {@link Context } * */ public void setContext(Context value) { this.context = value; } /** * Gets the value of the campagne property. * * @return * possible object is * {@link String } * */ public String getCampagne() { return campagne; } /** * Sets the value of the campagne property. * * @param value * allowed object is * {@link String } * */ public void setCampagne(String value) { this.campagne = value; } /** * Gets the value of the languages property. * * @return * possible object is * {@link Parameters.Languages } * */ public Parameters.Languages getLanguages() { return languages; } /** * Sets the value of the languages property. * * @param value * allowed object is * {@link Parameters.Languages } * */ public void setLanguages(Parameters.Languages value) { this.languages = value; } /** * Gets the value of the beginQuestion property. * * @return * possible object is * {@link BeginQuestion } * */ public BeginQuestion getBeginQuestion() { return beginQuestion; } /** * Sets the value of the beginQuestion property. * * @param value * allowed object is * {@link BeginQuestion } * */ public void setBeginQuestion(BeginQuestion value) { this.beginQuestion = value; } /** * Gets the value of the endQuestion property. * * @return * possible object is * {@link EndQuestion } * */ public EndQuestion getEndQuestion() { return endQuestion; } /** * Sets the value of the endQuestion property. * * @param value * allowed object is * {@link EndQuestion } * */ public void setEndQuestion(EndQuestion value) { this.endQuestion = value; } /** * Gets the value of the xformsParameters property. * * @return * possible object is * {@link XFORMSParameters } * */ public XFORMSParameters getXformsParameters() { return xformsParameters; } /** * Sets the value of the xformsParameters property. * * @param value * allowed object is * {@link XFORMSParameters } * */ public void setXformsParameters(XFORMSParameters value) { this.xformsParameters = value; } /** * Gets the value of the foParameters property. * * @return * possible object is * {@link FOParameters } * */ public FOParameters getFoParameters() { return foParameters; } /** * Sets the value of the foParameters property. * * @param value * allowed object is * {@link FOParameters } * */ public void setFoParameters(FOParameters value) { this.foParameters = value; } /** * Gets the value of the lunaticXmlParameters property. * * @return * possible object is * {@link LunaticXMLParameters } * */ public LunaticXMLParameters getLunaticXmlParameters() { return lunaticXmlParameters; } /** * Sets the value of the lunaticXmlParameters property. * * @param value * allowed object is * {@link LunaticXMLParameters } * */ public void setLunaticXmlParameters(LunaticXMLParameters value) { this.lunaticXmlParameters = value; } /** * Gets the value of the fodtParameters property. * * @return * possible object is * {@link FODTParameters } * */ public FODTParameters getFodtParameters() { return fodtParameters; } /** * Sets the value of the fodtParameters property. * * @param value * allowed object is * {@link FODTParameters } * */ public void setFodtParameters(FODTParameters value) { this.fodtParameters = value; } /** * Gets the value of the numerotation property. * * @return * possible object is * {@link GlobalNumbering } * */ public GlobalNumbering getNumerotation() { return numerotation; } /** * Sets the value of the numerotation property. * * @param value * allowed object is * {@link GlobalNumbering } * */ public void setNumerotation(GlobalNumbering value) { this.numerotation = value; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="Language" type="{}Language" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "language" }) public static class Languages { @XmlElement(name = "Language", defaultValue = "fr") @XmlSchemaType(name = "token") protected List language; /** * Gets the value of the language 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 language property. * *

* For example, to add a new item, do as follows: *

         *    getLanguage().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Language } * * */ public List getLanguage() { if (language == null) { language = new ArrayList(); } return this.language; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy