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

fr.insee.eno.parameters.Roster 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Roster complex type. * *

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

 * <complexType name="Roster">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Row" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="DefaultSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *                   <element name="MinimumEmpty" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Roster", propOrder = { "row" }) public class Roster { @XmlElement(name = "Row") protected Roster.Row row; /** * Gets the value of the row property. * * @return * possible object is * {@link Roster.Row } * */ public Roster.Row getRow() { return row; } /** * Sets the value of the row property. * * @param value * allowed object is * {@link Roster.Row } * */ public void setRow(Roster.Row value) { this.row = 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="DefaultSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
     *         <element name="MinimumEmpty" type="{http://www.w3.org/2001/XMLSchema}int"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "defaultSize", "minimumEmpty" }) public static class Row { @XmlElement(name = "DefaultSize", defaultValue = "10") protected int defaultSize; @XmlElement(name = "MinimumEmpty", defaultValue = "1") protected int minimumEmpty; /** * Gets the value of the defaultSize property. * */ public int getDefaultSize() { return defaultSize; } /** * Sets the value of the defaultSize property. * */ public void setDefaultSize(int value) { this.defaultSize = value; } /** * Gets the value of the minimumEmpty property. * */ public int getMinimumEmpty() { return minimumEmpty; } /** * Sets the value of the minimumEmpty property. * */ public void setMinimumEmpty(int value) { this.minimumEmpty = value; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy