| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| CategoryType |
|
| 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.XmlType; | |
| 15 | ||
| 16 | ||
| 17 | /** | |
| 18 | * <p>Java class for CategoryType complex type. | |
| 19 | * | |
| 20 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 21 | * | |
| 22 | * <pre> | |
| 23 | * <complexType name="CategoryType"> | |
| 24 | * <complexContent> | |
| 25 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 26 | * <sequence> | |
| 27 | * <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/> | |
| 28 | * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> | |
| 29 | * <element name="tags" type="{http://www.w3.org/2001/XMLSchema}string"/> | |
| 30 | * </sequence> | |
| 31 | * </restriction> | |
| 32 | * </complexContent> | |
| 33 | * </complexType> | |
| 34 | * </pre> | |
| 35 | * | |
| 36 | * | |
| 37 | */ | |
| 38 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 39 | @XmlType(name = "CategoryType", propOrder = { | |
| 40 | "id", | |
| 41 | "name", | |
| 42 | "tags" | |
| 43 | }) | |
| 44 | 36 | public class CategoryType { |
| 45 | ||
| 46 | @XmlElement(required = true) | |
| 47 | protected String id; | |
| 48 | @XmlElement(required = true) | |
| 49 | protected String name; | |
| 50 | @XmlElement(required = true) | |
| 51 | protected String tags; | |
| 52 | ||
| 53 | /** | |
| 54 | * Gets the value of the id property. | |
| 55 | * | |
| 56 | * @return | |
| 57 | * possible object is | |
| 58 | * {@link String } | |
| 59 | * | |
| 60 | */ | |
| 61 | public String getId() { | |
| 62 | 0 | return id; |
| 63 | } | |
| 64 | ||
| 65 | /** | |
| 66 | * Sets the value of the id property. | |
| 67 | * | |
| 68 | * @param value | |
| 69 | * allowed object is | |
| 70 | * {@link String } | |
| 71 | * | |
| 72 | */ | |
| 73 | public void setId(String value) { | |
| 74 | 36 | this.id = value; |
| 75 | 36 | } |
| 76 | ||
| 77 | /** | |
| 78 | * Gets the value of the name property. | |
| 79 | * | |
| 80 | * @return | |
| 81 | * possible object is | |
| 82 | * {@link String } | |
| 83 | * | |
| 84 | */ | |
| 85 | public String getName() { | |
| 86 | 0 | return name; |
| 87 | } | |
| 88 | ||
| 89 | /** | |
| 90 | * Sets the value of the name property. | |
| 91 | * | |
| 92 | * @param value | |
| 93 | * allowed object is | |
| 94 | * {@link String } | |
| 95 | * | |
| 96 | */ | |
| 97 | public void setName(String value) { | |
| 98 | 36 | this.name = value; |
| 99 | 36 | } |
| 100 | ||
| 101 | /** | |
| 102 | * Gets the value of the tags property. | |
| 103 | * | |
| 104 | * @return | |
| 105 | * possible object is | |
| 106 | * {@link String } | |
| 107 | * | |
| 108 | */ | |
| 109 | public String getTags() { | |
| 110 | 0 | return tags; |
| 111 | } | |
| 112 | ||
| 113 | /** | |
| 114 | * Sets the value of the tags property. | |
| 115 | * | |
| 116 | * @param value | |
| 117 | * allowed object is | |
| 118 | * {@link String } | |
| 119 | * | |
| 120 | */ | |
| 121 | public void setTags(String value) { | |
| 122 | 36 | this.tags = value; |
| 123 | 36 | } |
| 124 | ||
| 125 | } |