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

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

Go to download

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

There is a newer version: 2.12.1
Show 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 Style complex type. * *

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

 * <complexType name="Style">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="Sequence-title" type="{}Sequence-title" minOccurs="0"/>
 *         <element name="Paragraph-title" type="{}Paragraph-title" minOccurs="0"/>
 *         <element name="general-style" type="{}general-style" minOccurs="0"/>
 *         <element name="label-cell" type="{}label-cell" minOccurs="0"/>
 *         <element name="label-question" type="{}label-question" minOccurs="0"/>
 *         <element name="row-header-line" type="{}row-header-line" minOccurs="0"/>
 *         <element name="table-column" type="{}table-column" minOccurs="0"/>
 *         <element name="data-cell" type="{}data-cell" minOccurs="0"/>
 *         <element name="Line-drawing" type="{}Line-drawing" minOccurs="0"/>
 *         <element name="Line-drawing-Garde" type="{}Line-drawing-Garde" minOccurs="0"/>
 *         <element name="filter-block" type="{}filter-block" minOccurs="0"/>
 *         <element name="filter-inline-container" type="{}filter-inline-container" minOccurs="0"/>
 *         <element name="filter-alternative" type="{}filter-alternative" minOccurs="0"/>
 *         <element name="footnote" type="{}footnote" minOccurs="0"/>
 *         <element name="instruction" type="{}instruction" minOccurs="0"/>
 *         <element name="statement" type="{}statement" minOccurs="0"/>
 *         <element name="answer-item" type="{}answer-item" minOccurs="0"/>
 *         <element name="details" type="{}details" minOccurs="0"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Style", propOrder = { }) public class Style { @XmlElement(name = "Sequence-title") protected SequenceTitle sequenceTitle; @XmlElement(name = "Paragraph-title") protected ParagraphTitle paragraphTitle; @XmlElement(name = "general-style") protected GeneralStyle generalStyle; @XmlElement(name = "label-cell") protected LabelCell labelCell; @XmlElement(name = "label-question") protected LabelQuestion labelQuestion; @XmlElement(name = "row-header-line") protected RowHeaderLine rowHeaderLine; @XmlElement(name = "table-column") protected TableColumn tableColumn; @XmlElement(name = "data-cell") protected DataCell dataCell; @XmlElement(name = "Line-drawing") protected LineDrawing lineDrawing; @XmlElement(name = "Line-drawing-Garde") protected LineDrawingGarde lineDrawingGarde; @XmlElement(name = "filter-block") protected FilterBlock filterBlock; @XmlElement(name = "filter-inline-container") protected FilterInlineContainer filterInlineContainer; @XmlElement(name = "filter-alternative") protected FilterAlternative filterAlternative; protected Footnote footnote; protected Instruction instruction; protected Statement statement; @XmlElement(name = "answer-item") protected AnswerItem answerItem; protected Details details; /** * Gets the value of the sequenceTitle property. * * @return * possible object is * {@link SequenceTitle } * */ public SequenceTitle getSequenceTitle() { return sequenceTitle; } /** * Sets the value of the sequenceTitle property. * * @param value * allowed object is * {@link SequenceTitle } * */ public void setSequenceTitle(SequenceTitle value) { this.sequenceTitle = value; } /** * Gets the value of the paragraphTitle property. * * @return * possible object is * {@link ParagraphTitle } * */ public ParagraphTitle getParagraphTitle() { return paragraphTitle; } /** * Sets the value of the paragraphTitle property. * * @param value * allowed object is * {@link ParagraphTitle } * */ public void setParagraphTitle(ParagraphTitle value) { this.paragraphTitle = value; } /** * Gets the value of the generalStyle property. * * @return * possible object is * {@link GeneralStyle } * */ public GeneralStyle getGeneralStyle() { return generalStyle; } /** * Sets the value of the generalStyle property. * * @param value * allowed object is * {@link GeneralStyle } * */ public void setGeneralStyle(GeneralStyle value) { this.generalStyle = value; } /** * Gets the value of the labelCell property. * * @return * possible object is * {@link LabelCell } * */ public LabelCell getLabelCell() { return labelCell; } /** * Sets the value of the labelCell property. * * @param value * allowed object is * {@link LabelCell } * */ public void setLabelCell(LabelCell value) { this.labelCell = value; } /** * Gets the value of the labelQuestion property. * * @return * possible object is * {@link LabelQuestion } * */ public LabelQuestion getLabelQuestion() { return labelQuestion; } /** * Sets the value of the labelQuestion property. * * @param value * allowed object is * {@link LabelQuestion } * */ public void setLabelQuestion(LabelQuestion value) { this.labelQuestion = value; } /** * Gets the value of the rowHeaderLine property. * * @return * possible object is * {@link RowHeaderLine } * */ public RowHeaderLine getRowHeaderLine() { return rowHeaderLine; } /** * Sets the value of the rowHeaderLine property. * * @param value * allowed object is * {@link RowHeaderLine } * */ public void setRowHeaderLine(RowHeaderLine value) { this.rowHeaderLine = value; } /** * Gets the value of the tableColumn property. * * @return * possible object is * {@link TableColumn } * */ public TableColumn getTableColumn() { return tableColumn; } /** * Sets the value of the tableColumn property. * * @param value * allowed object is * {@link TableColumn } * */ public void setTableColumn(TableColumn value) { this.tableColumn = value; } /** * Gets the value of the dataCell property. * * @return * possible object is * {@link DataCell } * */ public DataCell getDataCell() { return dataCell; } /** * Sets the value of the dataCell property. * * @param value * allowed object is * {@link DataCell } * */ public void setDataCell(DataCell value) { this.dataCell = value; } /** * Gets the value of the lineDrawing property. * * @return * possible object is * {@link LineDrawing } * */ public LineDrawing getLineDrawing() { return lineDrawing; } /** * Sets the value of the lineDrawing property. * * @param value * allowed object is * {@link LineDrawing } * */ public void setLineDrawing(LineDrawing value) { this.lineDrawing = value; } /** * Gets the value of the lineDrawingGarde property. * * @return * possible object is * {@link LineDrawingGarde } * */ public LineDrawingGarde getLineDrawingGarde() { return lineDrawingGarde; } /** * Sets the value of the lineDrawingGarde property. * * @param value * allowed object is * {@link LineDrawingGarde } * */ public void setLineDrawingGarde(LineDrawingGarde value) { this.lineDrawingGarde = value; } /** * Gets the value of the filterBlock property. * * @return * possible object is * {@link FilterBlock } * */ public FilterBlock getFilterBlock() { return filterBlock; } /** * Sets the value of the filterBlock property. * * @param value * allowed object is * {@link FilterBlock } * */ public void setFilterBlock(FilterBlock value) { this.filterBlock = value; } /** * Gets the value of the filterInlineContainer property. * * @return * possible object is * {@link FilterInlineContainer } * */ public FilterInlineContainer getFilterInlineContainer() { return filterInlineContainer; } /** * Sets the value of the filterInlineContainer property. * * @param value * allowed object is * {@link FilterInlineContainer } * */ public void setFilterInlineContainer(FilterInlineContainer value) { this.filterInlineContainer = value; } /** * Gets the value of the filterAlternative property. * * @return * possible object is * {@link FilterAlternative } * */ public FilterAlternative getFilterAlternative() { return filterAlternative; } /** * Sets the value of the filterAlternative property. * * @param value * allowed object is * {@link FilterAlternative } * */ public void setFilterAlternative(FilterAlternative value) { this.filterAlternative = value; } /** * Gets the value of the footnote property. * * @return * possible object is * {@link Footnote } * */ public Footnote getFootnote() { return footnote; } /** * Sets the value of the footnote property. * * @param value * allowed object is * {@link Footnote } * */ public void setFootnote(Footnote value) { this.footnote = value; } /** * Gets the value of the instruction property. * * @return * possible object is * {@link Instruction } * */ public Instruction getInstruction() { return instruction; } /** * Sets the value of the instruction property. * * @param value * allowed object is * {@link Instruction } * */ public void setInstruction(Instruction value) { this.instruction = value; } /** * Gets the value of the statement property. * * @return * possible object is * {@link Statement } * */ public Statement getStatement() { return statement; } /** * Sets the value of the statement property. * * @param value * allowed object is * {@link Statement } * */ public void setStatement(Statement value) { this.statement = value; } /** * Gets the value of the answerItem property. * * @return * possible object is * {@link AnswerItem } * */ public AnswerItem getAnswerItem() { return answerItem; } /** * Sets the value of the answerItem property. * * @param value * allowed object is * {@link AnswerItem } * */ public void setAnswerItem(AnswerItem value) { this.answerItem = value; } /** * Gets the value of the details property. * * @return * possible object is * {@link Details } * */ public Details getDetails() { return details; } /** * Sets the value of the details property. * * @param value * allowed object is * {@link Details } * */ public void setDetails(Details value) { this.details = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy