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

jabber.x.data.Field Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2020.10.04 at 01:10:24 PM KST 
//


package jabber.x.data;

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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

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="desc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="required" type="{jabber:x:data}empty" minOccurs="0"/>
 *         <element ref="{jabber:x:data}value" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{jabber:x:data}option" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="type">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}NCName">
 *             <enumeration value="boolean"/>
 *             <enumeration value="fixed"/>
 *             <enumeration value="hidden"/>
 *             <enumeration value="jid-multi"/>
 *             <enumeration value="jid-single"/>
 *             <enumeration value="list-multi"/>
 *             <enumeration value="list-single"/>
 *             <enumeration value="text-multi"/>
 *             <enumeration value="text-private"/>
 *             <enumeration value="text-single"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *       <attribute name="var" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "desc", "required", "value", "option" }) @XmlRootElement(name = "field") public class Field { protected String desc; protected String required; protected List value; protected List

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy