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 11:38:51 AM HST 
006    //
007    
008    
009    package org.hackystat.projectbrowser.page.projectportfolio.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.XmlElement;
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;sequence>
029     *         &lt;element ref="{}Measures"/>
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        "measures"
041    })
042    @XmlRootElement(name = "PortfolioDefinitions")
043    public class PortfolioDefinitions
044        implements Serializable
045    {
046    
047        private final static long serialVersionUID = 6799287509742157998L;
048        @XmlElement(name = "Measures", required = true)
049        protected Measures measures;
050    
051        /**
052         * Gets the value of the measures property.
053         * 
054         * @return
055         *     possible object is
056         *     {@link Measures }
057         *     
058         */
059        public Measures getMeasures() {
060            return measures;
061        }
062    
063        /**
064         * Sets the value of the measures property.
065         * 
066         * @param value
067         *     allowed object is
068         *     {@link Measures }
069         *     
070         */
071        public void setMeasures(Measures value) {
072            this.measures = value;
073        }
074    
075        public boolean isSetMeasures() {
076            return (this.measures!= null);
077        }
078    
079    }