| 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 | |
|---|
| 26 | package util; |
|---|
| 27 | |
|---|
| 28 | import javax.xml.bind.annotation.XmlAccessType; |
|---|
| 29 | import javax.xml.bind.annotation.XmlAccessorType; |
|---|
| 30 | import javax.xml.bind.annotation.XmlAttribute; |
|---|
| 31 | import javax.xml.bind.annotation.XmlRootElement; |
|---|
| 32 | import 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 | * <complexType> |
|---|
| 42 | * <complexContent> |
|---|
| 43 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
|---|
| 44 | * <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" /> |
|---|
| 45 | * <attribute name="enable" type="{http://www.w3.org/2001/XMLSchema}boolean" /> |
|---|
| 46 | * </restriction> |
|---|
| 47 | * </complexContent> |
|---|
| 48 | * </complexType> |
|---|
| 49 | * </pre> |
|---|
| 50 | * |
|---|
| 51 | * |
|---|
| 52 | */ |
|---|
| 53 | @XmlAccessorType(XmlAccessType.FIELD) |
|---|
| 54 | @XmlType(name = "") |
|---|
| 55 | @XmlRootElement(name = "sref") |
|---|
| 56 | public 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 | } |
|---|