jabber.iq.time.Query Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2010.01.18 at 04:50:38 PM GMT
//
package jabber.iq.time;
import javax.annotation.Generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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 minOccurs="0">
* <element name="utc" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="tz" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="display" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"utc",
"tz",
"display"
})
@XmlRootElement(name = "query")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2010-01-18T16:50:38+0000", comments = "hudson-jaxb-ri-2.1-833 uk.org.retep.tools:jaxb:10.1")
public class Query {
protected String utc;
protected String tz;
protected String display;
/**
* Gets the value of the utc property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUtc() {
return utc;
}
/**
* Sets the value of the utc property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUtc(String value) {
this.utc = value;
}
/**
* Gets the value of the tz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTz() {
return tz;
}
/**
* Sets the value of the tz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTz(String value) {
this.tz = value;
}
/**
* Gets the value of the display property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDisplay() {
return display;
}
/**
* Sets the value of the display property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDisplay(String value) {
this.display = value;
}
}