fr.insee.eno.parameters.FOParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eno-core Show documentation
Show all versions of eno-core Show documentation
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for FOParameters complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FOParameters">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="InitializeAllVariables" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="Format" type="{}Format" minOccurs="0"/>
* <element name="Roster" type="{}Roster" minOccurs="0"/>
* <element name="TextArea" type="{}TextArea" minOccurs="0"/>
* <element name="Table" type="{}Table" minOccurs="0"/>
* <element name="Loop" type="{}Loop" minOccurs="0"/>
* <element name="Capture" type="{}Capture" minOccurs="0"/>
* <element name="PageBreakBetween" type="{}PageBreakBetween" minOccurs="0"/>
* <element name="AccompanyingMail" type="{}AccompanyingMail" minOccurs="0"/>
* <element name="Style" type="{}Style" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FOParameters", propOrder = {
})
public class FOParameters {
@XmlElement(name = "InitializeAllVariables", defaultValue = "false")
protected Boolean initializeAllVariables;
@XmlElement(name = "Format")
protected Format format;
@XmlElement(name = "Roster")
protected Roster roster;
@XmlElement(name = "TextArea")
protected TextArea textArea;
@XmlElement(name = "Table")
protected Table table;
@XmlElement(name = "Loop")
protected Loop loop;
@XmlElement(name = "Capture")
protected Capture capture;
@XmlElement(name = "PageBreakBetween")
protected PageBreakBetween pageBreakBetween;
@XmlElement(name = "AccompanyingMail", defaultValue = "")
@XmlSchemaType(name = "token")
protected AccompanyingMail accompanyingMail;
@XmlElement(name = "Style")
protected Style style;
/**
* Gets the value of the initializeAllVariables property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isInitializeAllVariables() {
return initializeAllVariables;
}
/**
* Sets the value of the initializeAllVariables property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setInitializeAllVariables(Boolean value) {
this.initializeAllVariables = value;
}
/**
* Gets the value of the format property.
*
* @return
* possible object is
* {@link Format }
*
*/
public Format getFormat() {
return format;
}
/**
* Sets the value of the format property.
*
* @param value
* allowed object is
* {@link Format }
*
*/
public void setFormat(Format value) {
this.format = value;
}
/**
* Gets the value of the roster property.
*
* @return
* possible object is
* {@link Roster }
*
*/
public Roster getRoster() {
return roster;
}
/**
* Sets the value of the roster property.
*
* @param value
* allowed object is
* {@link Roster }
*
*/
public void setRoster(Roster value) {
this.roster = value;
}
/**
* Gets the value of the textArea property.
*
* @return
* possible object is
* {@link TextArea }
*
*/
public TextArea getTextArea() {
return textArea;
}
/**
* Sets the value of the textArea property.
*
* @param value
* allowed object is
* {@link TextArea }
*
*/
public void setTextArea(TextArea value) {
this.textArea = value;
}
/**
* Gets the value of the table property.
*
* @return
* possible object is
* {@link Table }
*
*/
public Table getTable() {
return table;
}
/**
* Sets the value of the table property.
*
* @param value
* allowed object is
* {@link Table }
*
*/
public void setTable(Table value) {
this.table = value;
}
/**
* Gets the value of the loop property.
*
* @return
* possible object is
* {@link Loop }
*
*/
public Loop getLoop() {
return loop;
}
/**
* Sets the value of the loop property.
*
* @param value
* allowed object is
* {@link Loop }
*
*/
public void setLoop(Loop value) {
this.loop = value;
}
/**
* Gets the value of the capture property.
*
* @return
* possible object is
* {@link Capture }
*
*/
public Capture getCapture() {
return capture;
}
/**
* Sets the value of the capture property.
*
* @param value
* allowed object is
* {@link Capture }
*
*/
public void setCapture(Capture value) {
this.capture = value;
}
/**
* Gets the value of the pageBreakBetween property.
*
* @return
* possible object is
* {@link PageBreakBetween }
*
*/
public PageBreakBetween getPageBreakBetween() {
return pageBreakBetween;
}
/**
* Sets the value of the pageBreakBetween property.
*
* @param value
* allowed object is
* {@link PageBreakBetween }
*
*/
public void setPageBreakBetween(PageBreakBetween value) {
this.pageBreakBetween = value;
}
/**
* Gets the value of the accompanyingMail property.
*
* @return
* possible object is
* {@link AccompanyingMail }
*
*/
public AccompanyingMail getAccompanyingMail() {
return accompanyingMail;
}
/**
* Sets the value of the accompanyingMail property.
*
* @param value
* allowed object is
* {@link AccompanyingMail }
*
*/
public void setAccompanyingMail(AccompanyingMail value) {
this.accompanyingMail = value;
}
/**
* Gets the value of the style property.
*
* @return
* possible object is
* {@link Style }
*
*/
public Style getStyle() {
return style;
}
/**
* Sets the value of the style property.
*
* @param value
* allowed object is
* {@link Style }
*
*/
public void setStyle(Style value) {
this.style = value;
}
}