| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| SlashExtension |
|
| 0.0;0 |
| 1 | // |
|
| 2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs |
|
| 3 | // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> |
|
| 4 | // Any modifications to this file will be lost upon recompilation of the source schema. |
|
| 5 | // Generated on: 2008.06.11 at 12:15:46 AM EDT |
|
| 6 | // |
|
| 7 | ||
| 8 | ||
| 9 | package yarfraw.generated.slash.elements; |
|
| 10 | ||
| 11 | import java.math.BigInteger; |
|
| 12 | import javax.xml.bind.annotation.XmlAccessType; |
|
| 13 | import javax.xml.bind.annotation.XmlAccessorType; |
|
| 14 | import javax.xml.bind.annotation.XmlElement; |
|
| 15 | import javax.xml.bind.annotation.XmlRootElement; |
|
| 16 | import javax.xml.bind.annotation.XmlSchemaType; |
|
| 17 | import javax.xml.bind.annotation.XmlType; |
|
| 18 | ||
| 19 | ||
| 20 | /** |
|
| 21 | * <p>Java class for anonymous complex type. |
|
| 22 | * |
|
| 23 | * <p>The following schema fragment specifies the expected content contained within this class. |
|
| 24 | * |
|
| 25 | * <pre> |
|
| 26 | * <complexType> |
|
| 27 | * <complexContent> |
|
| 28 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
|
| 29 | * <sequence> |
|
| 30 | * <element ref="{http://purl.org/rss/1.0/modules/slash/}comments"/> |
|
| 31 | * <element ref="{http://purl.org/rss/1.0/modules/slash/}department"/> |
|
| 32 | * <element ref="{http://purl.org/rss/1.0/modules/slash/}hit_parade"/> |
|
| 33 | * <element ref="{http://purl.org/rss/1.0/modules/slash/}section"/> |
|
| 34 | * </sequence> |
|
| 35 | * </restriction> |
|
| 36 | * </complexContent> |
|
| 37 | * </complexType> |
|
| 38 | * </pre> |
|
| 39 | * |
|
| 40 | * |
|
| 41 | */ |
|
| 42 | @XmlAccessorType(XmlAccessType.FIELD) |
|
| 43 | @XmlType(name = "", propOrder = { |
|
| 44 | "comments", |
|
| 45 | "department", |
|
| 46 | "hitParade", |
|
| 47 | "section" |
|
| 48 | }) |
|
| 49 | @XmlRootElement(name = "slashExtension") |
|
| 50 | 6 | public class SlashExtension { |
| 51 | ||
| 52 | @XmlElement(required = true) |
|
| 53 | @XmlSchemaType(name = "positiveInteger") |
|
| 54 | protected BigInteger comments; |
|
| 55 | @XmlElement(required = true) |
|
| 56 | protected String department; |
|
| 57 | @XmlElement(name = "hit_parade", required = true) |
|
| 58 | protected String hitParade; |
|
| 59 | @XmlElement(required = true) |
|
| 60 | protected String section; |
|
| 61 | ||
| 62 | /** |
|
| 63 | * |
|
| 64 | * <p> |
|
| 65 | * Slash is the source code and database that was originally used to |
|
| 66 | * create Slashdot, and has now been released under the GNU General Public |
|
| 67 | * License. It is a bona fide Open Source / Free Software project. |
|
| 68 | * </p> |
|
| 69 | * <p> |
|
| 70 | * The Slash RSS 1.0 module augments the RSS core and |
|
| 71 | * <a href="http://purl.org/rss/1.0/modules/dc/">Dublin Core</a> |
|
| 72 | * module's metadata with channel and item-level elements specific |
|
| 73 | * to Slash-based sites. |
|
| 74 | * |
|
| 75 | * |
|
| 76 | * |
|
| 77 | * @return |
|
| 78 | * possible object is |
|
| 79 | * {@link BigInteger } |
|
| 80 | * |
|
| 81 | */ |
|
| 82 | public BigInteger getComments() { |
|
| 83 | 0 | return comments; |
| 84 | } |
|
| 85 | ||
| 86 | /** |
|
| 87 | * Sets the value of the comments property. |
|
| 88 | * |
|
| 89 | * @param value |
|
| 90 | * allowed object is |
|
| 91 | * {@link BigInteger } |
|
| 92 | * |
|
| 93 | */ |
|
| 94 | public void setComments(BigInteger value) { |
|
| 95 | 6 | this.comments = value; |
| 96 | 6 | } |
| 97 | ||
| 98 | /** |
|
| 99 | * |
|
| 100 | * <p> |
|
| 101 | * Slash is the source code and database that was originally used to |
|
| 102 | * create Slashdot, and has now been released under the GNU General Public |
|
| 103 | * License. It is a bona fide Open Source / Free Software project. |
|
| 104 | * </p> |
|
| 105 | * <p> |
|
| 106 | * The Slash RSS 1.0 module augments the RSS core and |
|
| 107 | * <a href="http://purl.org/rss/1.0/modules/dc/">Dublin Core</a> |
|
| 108 | * module's metadata with channel and item-level elements specific |
|
| 109 | * to Slash-based sites. |
|
| 110 | * |
|
| 111 | * |
|
| 112 | * |
|
| 113 | * @return |
|
| 114 | * possible object is |
|
| 115 | * {@link String } |
|
| 116 | * |
|
| 117 | */ |
|
| 118 | public String getDepartment() { |
|
| 119 | 0 | return department; |
| 120 | } |
|
| 121 | ||
| 122 | /** |
|
| 123 | * Sets the value of the department property. |
|
| 124 | * |
|
| 125 | * @param value |
|
| 126 | * allowed object is |
|
| 127 | * {@link String } |
|
| 128 | * |
|
| 129 | */ |
|
| 130 | public void setDepartment(String value) { |
|
| 131 | 6 | this.department = value; |
| 132 | 6 | } |
| 133 | ||
| 134 | /** |
|
| 135 | * |
|
| 136 | * <p> |
|
| 137 | * Slash is the source code and database that was originally used to |
|
| 138 | * create Slashdot, and has now been released under the GNU General Public |
|
| 139 | * License. It is a bona fide Open Source / Free Software project. |
|
| 140 | * </p> |
|
| 141 | * <p> |
|
| 142 | * The Slash RSS 1.0 module augments the RSS core and |
|
| 143 | * <a href="http://purl.org/rss/1.0/modules/dc/">Dublin Core</a> |
|
| 144 | * module's metadata with channel and item-level elements specific |
|
| 145 | * to Slash-based sites. |
|
| 146 | * |
|
| 147 | * |
|
| 148 | * |
|
| 149 | * @return |
|
| 150 | * possible object is |
|
| 151 | * {@link String } |
|
| 152 | * |
|
| 153 | */ |
|
| 154 | public String getHitParade() { |
|
| 155 | 0 | return hitParade; |
| 156 | } |
|
| 157 | ||
| 158 | /** |
|
| 159 | * Sets the value of the hitParade property. |
|
| 160 | * |
|
| 161 | * @param value |
|
| 162 | * allowed object is |
|
| 163 | * {@link String } |
|
| 164 | * |
|
| 165 | */ |
|
| 166 | public void setHitParade(String value) { |
|
| 167 | 6 | this.hitParade = value; |
| 168 | 6 | } |
| 169 | ||
| 170 | /** |
|
| 171 | * |
|
| 172 | * <p> |
|
| 173 | * Slash is the source code and database that was originally used to |
|
| 174 | * create Slashdot, and has now been released under the GNU General Public |
|
| 175 | * License. It is a bona fide Open Source / Free Software project. |
|
| 176 | * </p> |
|
| 177 | * <p> |
|
| 178 | * The Slash RSS 1.0 module augments the RSS core and |
|
| 179 | * <a href="http://purl.org/rss/1.0/modules/dc/">Dublin Core</a> |
|
| 180 | * module's metadata with channel and item-level elements specific |
|
| 181 | * to Slash-based sites. |
|
| 182 | * |
|
| 183 | * |
|
| 184 | * |
|
| 185 | * @return |
|
| 186 | * possible object is |
|
| 187 | * {@link String } |
|
| 188 | * |
|
| 189 | */ |
|
| 190 | public String getSection() { |
|
| 191 | 0 | return section; |
| 192 | } |
|
| 193 | ||
| 194 | /** |
|
| 195 | * Sets the value of the section property. |
|
| 196 | * |
|
| 197 | * @param value |
|
| 198 | * allowed object is |
|
| 199 | * {@link String } |
|
| 200 | * |
|
| 201 | */ |
|
| 202 | public void setSection(String value) { |
|
| 203 | 6 | this.section = value; |
| 204 | 6 | } |
| 205 | ||
| 206 | } |