001    //
002    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 
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: 2011.11.16 at 07:37:02 PM EST 
006    //
007    
008    
009    package jabber.client;
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.XmlSchemaType;
015    import javax.xml.bind.annotation.XmlType;
016    import javax.xml.bind.annotation.XmlValue;
017    import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
018    import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
019    
020    
021    /**
022     * <p>Java class for anonymous complex type.
023     * 
024     * <p>The following schema fragment specifies the expected content contained within this class.
025     * 
026     * <pre>
027     * &lt;complexType>
028     *   &lt;simpleContent>
029     *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>NMTOKEN">
030     *     &lt;/extension>
031     *   &lt;/simpleContent>
032     * &lt;/complexType>
033     * </pre>
034     * 
035     * 
036     */
037    @XmlAccessorType(XmlAccessType.FIELD)
038    @XmlType(name = "", propOrder = {
039        "value"
040    })
041    @XmlRootElement(name = "thread")
042    public class Thread {
043    
044        @XmlValue
045        @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
046        @XmlSchemaType(name = "NMTOKEN")
047        protected String value;
048    
049        /**
050         * Gets the value of the value property.
051         * 
052         * @return
053         *     possible object is
054         *     {@link String }
055         *     
056         */
057        public String getValue() {
058            return value;
059        }
060    
061        /**
062         * Sets the value of the value property.
063         * 
064         * @param value
065         *     allowed object is
066         *     {@link String }
067         *     
068         */
069        public void setValue(String value) {
070            this.value = value;
071        }
072    
073    }