001 //
002 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
003 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
004 // Any modifications to this file will be lost upon recompilation of the source schema.
005 // Generated on: 2013.02.07 at 02:32:38 PM CET
006 //
007
008
009 package jabber.iq.time;
010
011 import javax.xml.bind.annotation.XmlAccessType;
012 import javax.xml.bind.annotation.XmlAccessorType;
013 import javax.xml.bind.annotation.XmlRootElement;
014 import javax.xml.bind.annotation.XmlType;
015
016
017 /**
018 * <p>Java class for anonymous complex type.
019 *
020 * <p>The following schema fragment specifies the expected content contained within this class.
021 *
022 * <pre>
023 * <complexType>
024 * <complexContent>
025 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
026 * <sequence minOccurs="0">
027 * <element name="utc" type="{http://www.w3.org/2001/XMLSchema}string"/>
028 * <element name="tz" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
029 * <element name="display" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
030 * </sequence>
031 * </restriction>
032 * </complexContent>
033 * </complexType>
034 * </pre>
035 *
036 *
037 */
038 @XmlAccessorType(XmlAccessType.FIELD)
039 @XmlType(name = "", propOrder = {
040 "utc",
041 "tz",
042 "display"
043 })
044 @XmlRootElement(name = "query")
045 public class Query {
046
047 protected String utc;
048 protected String tz;
049 protected String display;
050
051 /**
052 * Gets the value of the utc property.
053 *
054 * @return
055 * possible object is
056 * {@link String }
057 *
058 */
059 public String getUtc() {
060 return utc;
061 }
062
063 /**
064 * Sets the value of the utc property.
065 *
066 * @param value
067 * allowed object is
068 * {@link String }
069 *
070 */
071 public void setUtc(String value) {
072 this.utc = value;
073 }
074
075 /**
076 * Gets the value of the tz property.
077 *
078 * @return
079 * possible object is
080 * {@link String }
081 *
082 */
083 public String getTz() {
084 return tz;
085 }
086
087 /**
088 * Sets the value of the tz property.
089 *
090 * @param value
091 * allowed object is
092 * {@link String }
093 *
094 */
095 public void setTz(String value) {
096 this.tz = value;
097 }
098
099 /**
100 * Gets the value of the display property.
101 *
102 * @return
103 * possible object is
104 * {@link String }
105 *
106 */
107 public String getDisplay() {
108 return display;
109 }
110
111 /**
112 * Sets the value of the display property.
113 *
114 * @param value
115 * allowed object is
116 * {@link String }
117 *
118 */
119 public void setDisplay(String value) {
120 this.display = value;
121 }
122
123 }