001    //
002    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-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: 2008.02.16 at 09:06:13 AM HST 
006    //
007    
008    
009    package org.hackystat.telemetry.service.prefetch.jaxb;
010    
011    import javax.xml.bind.annotation.XmlAccessType;
012    import javax.xml.bind.annotation.XmlAccessorType;
013    import javax.xml.bind.annotation.XmlElement;
014    import javax.xml.bind.annotation.XmlRootElement;
015    import javax.xml.bind.annotation.XmlType;
016    
017    
018    /**
019     * <p>Java class for anonymous complex type.
020     * 
021     * <p>The following schema fragment specifies the expected content contained within this class.
022     * 
023     * <pre>
024     * &lt;complexType>
025     *   &lt;complexContent>
026     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
027     *       &lt;sequence>
028     *         &lt;element ref="{}Name"/>
029     *         &lt;element ref="{}Value"/>
030     *       &lt;/sequence>
031     *     &lt;/restriction>
032     *   &lt;/complexContent>
033     * &lt;/complexType>
034     * </pre>
035     * 
036     * 
037     */
038    @XmlAccessorType(XmlAccessType.FIELD)
039    @XmlType(name = "", propOrder = {
040        "name",
041        "value"
042    })
043    @XmlRootElement(name = "ChartParameter")
044    public class ChartParameter {
045    
046        @XmlElement(name = "Name", required = true)
047        protected String name;
048        @XmlElement(name = "Value", required = true)
049        protected String value;
050    
051        /**
052         * Gets the value of the name property.
053         * 
054         * @return
055         *     possible object is
056         *     {@link String }
057         *     
058         */
059        public String getName() {
060            return name;
061        }
062    
063        /**
064         * Sets the value of the name property.
065         * 
066         * @param value
067         *     allowed object is
068         *     {@link String }
069         *     
070         */
071        public void setName(String value) {
072            this.name = value;
073        }
074    
075        /**
076         * Gets the value of the value property.
077         * 
078         * @return
079         *     possible object is
080         *     {@link String }
081         *     
082         */
083        public String getValue() {
084            return value;
085        }
086    
087        /**
088         * Sets the value of the value property.
089         * 
090         * @param value
091         *     allowed object is
092         *     {@link String }
093         *     
094         */
095        public void setValue(String value) {
096            this.value = value;
097        }
098    
099    }