001    //
002    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-b02-fcs 
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: 2009.10.30 at 02:01:18 PM HST 
006    //
007    
008    
009    package org.hackystat.dailyprojectdata.resource.issuechange.jaxb;
010    
011    import java.io.Serializable;
012    import javax.xml.bind.annotation.XmlAccessType;
013    import javax.xml.bind.annotation.XmlAccessorType;
014    import javax.xml.bind.annotation.XmlAttribute;
015    import javax.xml.bind.annotation.XmlRootElement;
016    import javax.xml.bind.annotation.XmlType;
017    
018    
019    /**
020     * <p>Java class for anonymous complex type.
021     * 
022     * <p>The following schema fragment specifies the expected content contained within this class.
023     * 
024     * <pre>
025     * &lt;complexType>
026     *   &lt;complexContent>
027     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
028     *       &lt;attribute name="FromValue" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
029     *       &lt;attribute name="Key" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
030     *       &lt;attribute name="ToValue" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
031     *     &lt;/restriction>
032     *   &lt;/complexContent>
033     * &lt;/complexType>
034     * </pre>
035     * 
036     * 
037     */
038    @XmlAccessorType(XmlAccessType.FIELD)
039    @XmlType(name = "")
040    @XmlRootElement(name = "ChangedItem")
041    public class ChangedItem
042        implements Serializable
043    {
044    
045        private final static long serialVersionUID = 20091030L;
046        @XmlAttribute(name = "FromValue", required = true)
047        protected String fromValue;
048        @XmlAttribute(name = "Key", required = true)
049        protected String key;
050        @XmlAttribute(name = "ToValue", required = true)
051        protected String toValue;
052    
053        /**
054         * Gets the value of the fromValue property.
055         * 
056         * @return
057         *     possible object is
058         *     {@link String }
059         *     
060         */
061        public String getFromValue() {
062            return fromValue;
063        }
064    
065        /**
066         * Sets the value of the fromValue property.
067         * 
068         * @param value
069         *     allowed object is
070         *     {@link String }
071         *     
072         */
073        public void setFromValue(String value) {
074            this.fromValue = value;
075        }
076    
077        public boolean isSetFromValue() {
078            return (this.fromValue!= null);
079        }
080    
081        /**
082         * Gets the value of the key property.
083         * 
084         * @return
085         *     possible object is
086         *     {@link String }
087         *     
088         */
089        public String getKey() {
090            return key;
091        }
092    
093        /**
094         * Sets the value of the key property.
095         * 
096         * @param value
097         *     allowed object is
098         *     {@link String }
099         *     
100         */
101        public void setKey(String value) {
102            this.key = value;
103        }
104    
105        public boolean isSetKey() {
106            return (this.key!= null);
107        }
108    
109        /**
110         * Gets the value of the toValue property.
111         * 
112         * @return
113         *     possible object is
114         *     {@link String }
115         *     
116         */
117        public String getToValue() {
118            return toValue;
119        }
120    
121        /**
122         * Sets the value of the toValue property.
123         * 
124         * @param value
125         *     allowed object is
126         *     {@link String }
127         *     
128         */
129        public void setToValue(String value) {
130            this.toValue = value;
131        }
132    
133        public boolean isSetToValue() {
134            return (this.toValue!= null);
135        }
136    
137    }