| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| StaticPageType |
|
| 1.0;1 |
| 1 | // | |
| 2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 | |
| 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: 2012.12.18 at 09:26:19 AM EST | |
| 6 | // | |
| 7 | ||
| 8 | ||
| 9 | package net.sourceforge.pebble.dao.file; | |
| 10 | ||
| 11 | import javax.xml.bind.annotation.XmlAccessType; | |
| 12 | import javax.xml.bind.annotation.XmlAccessorType; | |
| 13 | import javax.xml.bind.annotation.XmlElement; | |
| 14 | import javax.xml.bind.annotation.XmlSchemaType; | |
| 15 | import javax.xml.bind.annotation.XmlType; | |
| 16 | ||
| 17 | ||
| 18 | /** | |
| 19 | * <p>Java class for StaticPageType complex type. | |
| 20 | * | |
| 21 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 22 | * | |
| 23 | * <pre> | |
| 24 | * <complexType name="StaticPageType"> | |
| 25 | * <complexContent> | |
| 26 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 27 | * <sequence> | |
| 28 | * <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/> | |
| 29 | * <element name="subtitle" type="{http://www.w3.org/2001/XMLSchema}string"/> | |
| 30 | * <element name="body" type="{http://www.w3.org/2001/XMLSchema}string"/> | |
| 31 | * <element name="tags" type="{http://www.w3.org/2001/XMLSchema}string"/> | |
| 32 | * <element name="date" type="{http://www.w3.org/2001/XMLSchema}string"/> | |
| 33 | * <element name="state" type="{}ContentState"/> | |
| 34 | * <element name="author" type="{http://www.w3.org/2001/XMLSchema}string"/> | |
| 35 | * <element name="staticName" type="{http://www.w3.org/2001/XMLSchema}string"/> | |
| 36 | * <element name="template" type="{http://www.w3.org/2001/XMLSchema}string"/> | |
| 37 | * <element name="originalPermalink" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> | |
| 38 | * </sequence> | |
| 39 | * </restriction> | |
| 40 | * </complexContent> | |
| 41 | * </complexType> | |
| 42 | * </pre> | |
| 43 | * | |
| 44 | * | |
| 45 | */ | |
| 46 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 47 | @XmlType(name = "StaticPageType", propOrder = { | |
| 48 | "title", | |
| 49 | "subtitle", | |
| 50 | "body", | |
| 51 | "tags", | |
| 52 | "date", | |
| 53 | "state", | |
| 54 | "author", | |
| 55 | "staticName", | |
| 56 | "template", | |
| 57 | "originalPermalink" | |
| 58 | }) | |
| 59 | 4 | public class StaticPageType { |
| 60 | ||
| 61 | @XmlElement(required = true) | |
| 62 | protected String title; | |
| 63 | @XmlElement(required = true) | |
| 64 | protected String subtitle; | |
| 65 | @XmlElement(required = true) | |
| 66 | protected String body; | |
| 67 | @XmlElement(required = true) | |
| 68 | protected String tags; | |
| 69 | @XmlElement(required = true) | |
| 70 | protected String date; | |
| 71 | @XmlElement(required = true) | |
| 72 | protected ContentState state; | |
| 73 | @XmlElement(required = true) | |
| 74 | protected String author; | |
| 75 | @XmlElement(required = true) | |
| 76 | protected String staticName; | |
| 77 | @XmlElement(required = true) | |
| 78 | protected String template; | |
| 79 | @XmlElement(required = true) | |
| 80 | @XmlSchemaType(name = "anyURI") | |
| 81 | protected String originalPermalink; | |
| 82 | ||
| 83 | /** | |
| 84 | * Gets the value of the title property. | |
| 85 | * | |
| 86 | * @return | |
| 87 | * possible object is | |
| 88 | * {@link String } | |
| 89 | * | |
| 90 | */ | |
| 91 | public String getTitle() { | |
| 92 | 4 | return title; |
| 93 | } | |
| 94 | ||
| 95 | /** | |
| 96 | * Sets the value of the title property. | |
| 97 | * | |
| 98 | * @param value | |
| 99 | * allowed object is | |
| 100 | * {@link String } | |
| 101 | * | |
| 102 | */ | |
| 103 | public void setTitle(String value) { | |
| 104 | 0 | this.title = value; |
| 105 | 0 | } |
| 106 | ||
| 107 | /** | |
| 108 | * Gets the value of the subtitle property. | |
| 109 | * | |
| 110 | * @return | |
| 111 | * possible object is | |
| 112 | * {@link String } | |
| 113 | * | |
| 114 | */ | |
| 115 | public String getSubtitle() { | |
| 116 | 4 | return subtitle; |
| 117 | } | |
| 118 | ||
| 119 | /** | |
| 120 | * Sets the value of the subtitle property. | |
| 121 | * | |
| 122 | * @param value | |
| 123 | * allowed object is | |
| 124 | * {@link String } | |
| 125 | * | |
| 126 | */ | |
| 127 | public void setSubtitle(String value) { | |
| 128 | 0 | this.subtitle = value; |
| 129 | 0 | } |
| 130 | ||
| 131 | /** | |
| 132 | * Gets the value of the body property. | |
| 133 | * | |
| 134 | * @return | |
| 135 | * possible object is | |
| 136 | * {@link String } | |
| 137 | * | |
| 138 | */ | |
| 139 | public String getBody() { | |
| 140 | 4 | return body; |
| 141 | } | |
| 142 | ||
| 143 | /** | |
| 144 | * Sets the value of the body property. | |
| 145 | * | |
| 146 | * @param value | |
| 147 | * allowed object is | |
| 148 | * {@link String } | |
| 149 | * | |
| 150 | */ | |
| 151 | public void setBody(String value) { | |
| 152 | 0 | this.body = value; |
| 153 | 0 | } |
| 154 | ||
| 155 | /** | |
| 156 | * Gets the value of the tags property. | |
| 157 | * | |
| 158 | * @return | |
| 159 | * possible object is | |
| 160 | * {@link String } | |
| 161 | * | |
| 162 | */ | |
| 163 | public String getTags() { | |
| 164 | 4 | return tags; |
| 165 | } | |
| 166 | ||
| 167 | /** | |
| 168 | * Sets the value of the tags property. | |
| 169 | * | |
| 170 | * @param value | |
| 171 | * allowed object is | |
| 172 | * {@link String } | |
| 173 | * | |
| 174 | */ | |
| 175 | public void setTags(String value) { | |
| 176 | 0 | this.tags = value; |
| 177 | 0 | } |
| 178 | ||
| 179 | /** | |
| 180 | * Gets the value of the date property. | |
| 181 | * | |
| 182 | * @return | |
| 183 | * possible object is | |
| 184 | * {@link String } | |
| 185 | * | |
| 186 | */ | |
| 187 | public String getDate() { | |
| 188 | 4 | return date; |
| 189 | } | |
| 190 | ||
| 191 | /** | |
| 192 | * Sets the value of the date property. | |
| 193 | * | |
| 194 | * @param value | |
| 195 | * allowed object is | |
| 196 | * {@link String } | |
| 197 | * | |
| 198 | */ | |
| 199 | public void setDate(String value) { | |
| 200 | 0 | this.date = value; |
| 201 | 0 | } |
| 202 | ||
| 203 | /** | |
| 204 | * Gets the value of the state property. | |
| 205 | * | |
| 206 | * @return | |
| 207 | * possible object is | |
| 208 | * {@link ContentState } | |
| 209 | * | |
| 210 | */ | |
| 211 | public ContentState getState() { | |
| 212 | 0 | return state; |
| 213 | } | |
| 214 | ||
| 215 | /** | |
| 216 | * Sets the value of the state property. | |
| 217 | * | |
| 218 | * @param value | |
| 219 | * allowed object is | |
| 220 | * {@link ContentState } | |
| 221 | * | |
| 222 | */ | |
| 223 | public void setState(ContentState value) { | |
| 224 | 0 | this.state = value; |
| 225 | 0 | } |
| 226 | ||
| 227 | /** | |
| 228 | * Gets the value of the author property. | |
| 229 | * | |
| 230 | * @return | |
| 231 | * possible object is | |
| 232 | * {@link String } | |
| 233 | * | |
| 234 | */ | |
| 235 | public String getAuthor() { | |
| 236 | 4 | return author; |
| 237 | } | |
| 238 | ||
| 239 | /** | |
| 240 | * Sets the value of the author property. | |
| 241 | * | |
| 242 | * @param value | |
| 243 | * allowed object is | |
| 244 | * {@link String } | |
| 245 | * | |
| 246 | */ | |
| 247 | public void setAuthor(String value) { | |
| 248 | 0 | this.author = value; |
| 249 | 0 | } |
| 250 | ||
| 251 | /** | |
| 252 | * Gets the value of the staticName property. | |
| 253 | * | |
| 254 | * @return | |
| 255 | * possible object is | |
| 256 | * {@link String } | |
| 257 | * | |
| 258 | */ | |
| 259 | public String getStaticName() { | |
| 260 | 4 | return staticName; |
| 261 | } | |
| 262 | ||
| 263 | /** | |
| 264 | * Sets the value of the staticName property. | |
| 265 | * | |
| 266 | * @param value | |
| 267 | * allowed object is | |
| 268 | * {@link String } | |
| 269 | * | |
| 270 | */ | |
| 271 | public void setStaticName(String value) { | |
| 272 | 0 | this.staticName = value; |
| 273 | 0 | } |
| 274 | ||
| 275 | /** | |
| 276 | * Gets the value of the template property. | |
| 277 | * | |
| 278 | * @return | |
| 279 | * possible object is | |
| 280 | * {@link String } | |
| 281 | * | |
| 282 | */ | |
| 283 | public String getTemplate() { | |
| 284 | 4 | return template; |
| 285 | } | |
| 286 | ||
| 287 | /** | |
| 288 | * Sets the value of the template property. | |
| 289 | * | |
| 290 | * @param value | |
| 291 | * allowed object is | |
| 292 | * {@link String } | |
| 293 | * | |
| 294 | */ | |
| 295 | public void setTemplate(String value) { | |
| 296 | 0 | this.template = value; |
| 297 | 0 | } |
| 298 | ||
| 299 | /** | |
| 300 | * Gets the value of the originalPermalink property. | |
| 301 | * | |
| 302 | * @return | |
| 303 | * possible object is | |
| 304 | * {@link String } | |
| 305 | * | |
| 306 | */ | |
| 307 | public String getOriginalPermalink() { | |
| 308 | 4 | return originalPermalink; |
| 309 | } | |
| 310 | ||
| 311 | /** | |
| 312 | * Sets the value of the originalPermalink property. | |
| 313 | * | |
| 314 | * @param value | |
| 315 | * allowed object is | |
| 316 | * {@link String } | |
| 317 | * | |
| 318 | */ | |
| 319 | public void setOriginalPermalink(String value) { | |
| 320 | 0 | this.originalPermalink = value; |
| 321 | 0 | } |
| 322 | ||
| 323 | } |