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

net.datastream.schemas.mp_functions.gridtoolbar.TOOLBAR Maven / Gradle / Ivy

There is a newer version: 12.1-4
Show newest version

package net.datastream.schemas.mp_functions.gridtoolbar;

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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

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="FIELD" maxOccurs="unbounded" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                 <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                 <attribute name="width" type="{http://www.w3.org/2001/XMLSchema}string" />
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="FIELDVALUES" minOccurs="0">
 *           <complexType>
 *             <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="dataspylist_options" minOccurs="0">
 *                               <complexType>
 *                                 <complexContent>
 *                                   <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                                     <sequence>
 *                                       <element ref="{http://schemas.datastream.net/MP_functions/GridToolbar}option" maxOccurs="unbounded"/>
 *                                     </sequence>
 *                                   </restriction>
 *                                 </complexContent>
 *                               </complexType>
 *                             </element>
 *                             <element name="dataspylist_display" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *                             <element name="dataspylist" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *                             <element name="filterfields_options" minOccurs="0">
 *                               <complexType>
 *                                 <complexContent>
 *                                   <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                                     <sequence>
 *                                       <element ref="{http://schemas.datastream.net/MP_functions/GridToolbar}option" maxOccurs="unbounded"/>
 *                                     </sequence>
 *                                   </restriction>
 *                                 </complexContent>
 *                               </complexType>
 *                             </element>
 *                             <element name="filterfields_display" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *                             <element name="filterfields" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *                           </sequence>
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "field", "fieldvalues" }) @XmlRootElement(name = "TOOLBAR") public class TOOLBAR { @XmlElement(name = "FIELD") protected List field; @XmlElement(name = "FIELDVALUES") protected TOOLBAR.FIELDVALUES fieldvalues; /** * Gets the value of the field 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 field property. * *

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

     *    getFIELD().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TOOLBAR.FIELD } * * */ public List getFIELD() { if (field == null) { field = new ArrayList(); } return this.field; } /** * Gets the value of the fieldvalues property. * * @return * possible object is * {@link TOOLBAR.FIELDVALUES } * */ public TOOLBAR.FIELDVALUES getFIELDVALUES() { return fieldvalues; } /** * Sets the value of the fieldvalues property. * * @param value * allowed object is * {@link TOOLBAR.FIELDVALUES } * */ public void setFIELDVALUES(TOOLBAR.FIELDVALUES value) { this.fieldvalues = 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">
     *       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
     *       <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
     *       <attribute name="width" type="{http://www.w3.org/2001/XMLSchema}string" />
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class FIELD { @XmlAttribute(name = "name") protected String name; @XmlAttribute(name = "type") protected String type; @XmlAttribute(name = "width") protected String width; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the width property. * * @return * possible object is * {@link String } * */ public String getWidth() { return width; } /** * Sets the value of the width property. * * @param value * allowed object is * {@link String } * */ public void setWidth(String value) { this.width = 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="ROW" minOccurs="0">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="dataspylist_options" minOccurs="0">
     *                     <complexType>
     *                       <complexContent>
     *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                           <sequence>
     *                             <element ref="{http://schemas.datastream.net/MP_functions/GridToolbar}option" maxOccurs="unbounded"/>
     *                           </sequence>
     *                         </restriction>
     *                       </complexContent>
     *                     </complexType>
     *                   </element>
     *                   <element name="dataspylist_display" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
     *                   <element name="dataspylist" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
     *                   <element name="filterfields_options" minOccurs="0">
     *                     <complexType>
     *                       <complexContent>
     *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                           <sequence>
     *                             <element ref="{http://schemas.datastream.net/MP_functions/GridToolbar}option" maxOccurs="unbounded"/>
     *                           </sequence>
     *                         </restriction>
     *                       </complexContent>
     *                     </complexType>
     *                   </element>
     *                   <element name="filterfields_display" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
     *                   <element name="filterfields" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
     *                 </sequence>
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "row" }) public static class FIELDVALUES { @XmlElement(name = "ROW") protected TOOLBAR.FIELDVALUES.ROW row; /** * Gets the value of the row property. * * @return * possible object is * {@link TOOLBAR.FIELDVALUES.ROW } * */ public TOOLBAR.FIELDVALUES.ROW getROW() { return row; } /** * Sets the value of the row property. * * @param value * allowed object is * {@link TOOLBAR.FIELDVALUES.ROW } * */ public void setROW(TOOLBAR.FIELDVALUES.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="dataspylist_options" minOccurs="0">
         *           <complexType>
         *             <complexContent>
         *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *                 <sequence>
         *                   <element ref="{http://schemas.datastream.net/MP_functions/GridToolbar}option" maxOccurs="unbounded"/>
         *                 </sequence>
         *               </restriction>
         *             </complexContent>
         *           </complexType>
         *         </element>
         *         <element name="dataspylist_display" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
         *         <element name="dataspylist" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
         *         <element name="filterfields_options" minOccurs="0">
         *           <complexType>
         *             <complexContent>
         *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *                 <sequence>
         *                   <element ref="{http://schemas.datastream.net/MP_functions/GridToolbar}option" maxOccurs="unbounded"/>
         *                 </sequence>
         *               </restriction>
         *             </complexContent>
         *           </complexType>
         *         </element>
         *         <element name="filterfields_display" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
         *         <element name="filterfields" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
         *       </sequence>
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dataspylist_Options", "dataspylist_Display", "dataspylist", "filterfields_Options", "filterfields_Display", "filterfields" }) public static class ROW { @XmlElement(name = "dataspylist_options") protected TOOLBAR.FIELDVALUES.ROW.Dataspylist_Options dataspylist_Options; @XmlElement(name = "dataspylist_display") protected List dataspylist_Display; protected List dataspylist; @XmlElement(name = "filterfields_options") protected TOOLBAR.FIELDVALUES.ROW.Filterfields_Options filterfields_Options; @XmlElement(name = "filterfields_display") protected List filterfields_Display; protected List filterfields; /** * Gets the value of the dataspylist_Options property. * * @return * possible object is * {@link TOOLBAR.FIELDVALUES.ROW.Dataspylist_Options } * */ public TOOLBAR.FIELDVALUES.ROW.Dataspylist_Options getDataspylist_Options() { return dataspylist_Options; } /** * Sets the value of the dataspylist_Options property. * * @param value * allowed object is * {@link TOOLBAR.FIELDVALUES.ROW.Dataspylist_Options } * */ public void setDataspylist_Options(TOOLBAR.FIELDVALUES.ROW.Dataspylist_Options value) { this.dataspylist_Options = value; } /** * Gets the value of the dataspylistDisplay 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 dataspylistDisplay property. * *

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

             *    getDataspylist_Display().add(newItem);
             * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getDataspylist_Display() { if (dataspylist_Display == null) { dataspylist_Display = new ArrayList(); } return this.dataspylist_Display; } /** * Gets the value of the dataspylist 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 dataspylist property. * *

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

             *    getDataspylist().add(newItem);
             * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getDataspylist() { if (dataspylist == null) { dataspylist = new ArrayList(); } return this.dataspylist; } /** * Gets the value of the filterfields_Options property. * * @return * possible object is * {@link TOOLBAR.FIELDVALUES.ROW.Filterfields_Options } * */ public TOOLBAR.FIELDVALUES.ROW.Filterfields_Options getFilterfields_Options() { return filterfields_Options; } /** * Sets the value of the filterfields_Options property. * * @param value * allowed object is * {@link TOOLBAR.FIELDVALUES.ROW.Filterfields_Options } * */ public void setFilterfields_Options(TOOLBAR.FIELDVALUES.ROW.Filterfields_Options value) { this.filterfields_Options = value; } /** * Gets the value of the filterfieldsDisplay 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 filterfieldsDisplay property. * *

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

             *    getFilterfields_Display().add(newItem);
             * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getFilterfields_Display() { if (filterfields_Display == null) { filterfields_Display = new ArrayList(); } return this.filterfields_Display; } /** * Gets the value of the filterfields 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 filterfields property. * *

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

             *    getFilterfields().add(newItem);
             * 
* * *

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

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 ref="{http://schemas.datastream.net/MP_functions/GridToolbar}option" maxOccurs="unbounded"/>
             *       </sequence>
             *     </restriction>
             *   </complexContent>
             * </complexType>
             * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "option" }) public static class Dataspylist_Options { @XmlElement(required = true) protected List

* Objects of the following type(s) are allowed in the list * {@link Option } * * */ public List





© 2015 - 2025 Weber Informatics LLC | Privacy Policy