001    //
002    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.1-06/08/2006 12:05 AM(kohsuke)-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.11.21 at 03:32:15 PM MST 
006    //
007    
008    
009    package edu.nrao.sss.astronomy.sesame;
010    
011    import java.math.BigDecimal;
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.XmlElement;
016    import javax.xml.bind.annotation.XmlType;
017    import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
018    import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
019    
020    
021    /**
022     * <p>Java class for veqr complex type.
023     * 
024     * <p>The following schema fragment specifies the expected content contained within this class.
025     * 
026     * <pre>
027     * &lt;complexType name="veqr">
028     *   &lt;complexContent>
029     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
030     *       &lt;sequence>
031     *         &lt;element name="v" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
032     *         &lt;element name="e" type="{}err" minOccurs="0"/>
033     *         &lt;element name="q" type="{http://www.w3.org/2001/XMLSchema}token" minOccurs="0"/>
034     *         &lt;element name="r" type="{}bibcode" minOccurs="0"/>
035     *       &lt;/sequence>
036     *       &lt;attribute name="band" type="{http://www.w3.org/2001/XMLSchema}token" />
037     *     &lt;/restriction>
038     *   &lt;/complexContent>
039     * &lt;/complexType>
040     * </pre>
041     * 
042     * 
043     */
044    @XmlAccessorType(XmlAccessType.FIELD)
045    @XmlType(name = "veqr", propOrder = {
046        "v",
047        "e",
048        "q",
049        "r"
050    })
051    public class Veqr {
052    
053        @XmlElement(required = true)
054        protected BigDecimal v;
055        protected BigDecimal e;
056        @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
057        protected String q;
058        protected String r;
059        @XmlAttribute
060        @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
061        protected String band;
062    
063        /**
064         * Gets the value of the v property.
065         * 
066         * @return
067         *     possible object is
068         *     {@link BigDecimal }
069         *     
070         */
071        public BigDecimal getV() {
072            return v;
073        }
074    
075        /**
076         * Sets the value of the v property.
077         * 
078         * @param value
079         *     allowed object is
080         *     {@link BigDecimal }
081         *     
082         */
083        public void setV(BigDecimal value) {
084            this.v = value;
085        }
086    
087        /**
088         * Gets the value of the e property.
089         * 
090         * @return
091         *     possible object is
092         *     {@link BigDecimal }
093         *     
094         */
095        public BigDecimal getE() {
096            return e;
097        }
098    
099        /**
100         * Sets the value of the e property.
101         * 
102         * @param value
103         *     allowed object is
104         *     {@link BigDecimal }
105         *     
106         */
107        public void setE(BigDecimal value) {
108            this.e = value;
109        }
110    
111        /**
112         * Gets the value of the q property.
113         * 
114         * @return
115         *     possible object is
116         *     {@link String }
117         *     
118         */
119        public String getQ() {
120            return q;
121        }
122    
123        /**
124         * Sets the value of the q property.
125         * 
126         * @param value
127         *     allowed object is
128         *     {@link String }
129         *     
130         */
131        public void setQ(String value) {
132            this.q = value;
133        }
134    
135        /**
136         * Gets the value of the r property.
137         * 
138         * @return
139         *     possible object is
140         *     {@link String }
141         *     
142         */
143        public String getR() {
144            return r;
145        }
146    
147        /**
148         * Sets the value of the r property.
149         * 
150         * @param value
151         *     allowed object is
152         *     {@link String }
153         *     
154         */
155        public void setR(String value) {
156            this.r = value;
157        }
158    
159        /**
160         * Gets the value of the band property.
161         * 
162         * @return
163         *     possible object is
164         *     {@link String }
165         *     
166         */
167        public String getBand() {
168            return band;
169        }
170    
171        /**
172         * Sets the value of the band property.
173         * 
174         * @param value
175         *     allowed object is
176         *     {@link String }
177         *     
178         */
179        public void setBand(String value) {
180            this.band = value;
181        }
182    
183    }