root/tools/routingservice/branches/wrs-2.0/src/util/Sref.java

Revision 298, 2.9 KB (checked in by anton, 19 months ago)

Parameter values overriding implemented, GPL headers added

Line 
1/*  WRS 2.0
2 *  Copyright (C) 2009 Anton Patrushev
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18//
19// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6
20// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
21// Any modifications to this file will be lost upon recompilation of the source schema.
22// Generated on: 2009.03.31 at 03:35:29 PM JST
23//
24
25
26package util;
27
28import javax.xml.bind.annotation.XmlAccessType;
29import javax.xml.bind.annotation.XmlAccessorType;
30import javax.xml.bind.annotation.XmlAttribute;
31import javax.xml.bind.annotation.XmlRootElement;
32import javax.xml.bind.annotation.XmlType;
33
34
35/**
36 * <p>Java class for anonymous complex type.
37 *
38 * <p>The following schema fragment specifies the expected content contained within this class.
39 *
40 * <pre>
41 * &lt;complexType>
42 *   &lt;complexContent>
43 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
44 *       &lt;attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" />
45 *       &lt;attribute name="enable" type="{http://www.w3.org/2001/XMLSchema}boolean" />
46 *     &lt;/restriction>
47 *   &lt;/complexContent>
48 * &lt;/complexType>
49 * </pre>
50 *
51 *
52 */
53@XmlAccessorType(XmlAccessType.FIELD)
54@XmlType(name = "")
55@XmlRootElement(name = "sref")
56public class Sref {
57
58    @XmlAttribute
59    protected String ref;
60    @XmlAttribute
61    protected Boolean enable;
62
63    /**
64     * Gets the value of the ref property.
65     *
66     * @return
67     *     possible object is
68     *     {@link String }
69     *     
70     */
71    public String getRef() {
72        return ref;
73    }
74
75    /**
76     * Sets the value of the ref property.
77     *
78     * @param value
79     *     allowed object is
80     *     {@link String }
81     *     
82     */
83    public void setRef(String value) {
84        this.ref = value;
85    }
86
87    /**
88     * Gets the value of the enable property.
89     *
90     * @return
91     *     possible object is
92     *     {@link Boolean }
93     *     
94     */
95    public Boolean isEnable() {
96        return enable;
97    }
98
99    /**
100     * Sets the value of the enable property.
101     *
102     * @param value
103     *     allowed object is
104     *     {@link Boolean }
105     *     
106     */
107    public void setEnable(Boolean value) {
108        this.enable = value;
109    }
110
111}
Note: See TracBrowser for help on using the browser.