| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| TCategory |
|
| 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:38 AM EDT |
|
| 6 | // |
|
| 7 | ||
| 8 | ||
| 9 | package yarfraw.generated.rss20.elements; |
|
| 10 | ||
| 11 | import javax.xml.bind.annotation.XmlAccessType; |
|
| 12 | import javax.xml.bind.annotation.XmlAccessorType; |
|
| 13 | import javax.xml.bind.annotation.XmlAttribute; |
|
| 14 | import javax.xml.bind.annotation.XmlType; |
|
| 15 | import javax.xml.bind.annotation.XmlValue; |
|
| 16 | ||
| 17 | ||
| 18 | /** |
|
| 19 | * <p>Java class for tCategory complex type. |
|
| 20 | * |
|
| 21 | * <p>The following schema fragment specifies the expected content contained within this class. |
|
| 22 | * |
|
| 23 | * <pre> |
|
| 24 | * <complexType name="tCategory"> |
|
| 25 | * <simpleContent> |
|
| 26 | * <extension base="<http://www.w3.org/2001/XMLSchema>string"> |
|
| 27 | * <attribute name="domain" type="{http://www.w3.org/2001/XMLSchema}string" /> |
|
| 28 | * </extension> |
|
| 29 | * </simpleContent> |
|
| 30 | * </complexType> |
|
| 31 | * </pre> |
|
| 32 | * |
|
| 33 | * |
|
| 34 | */ |
|
| 35 | @XmlAccessorType(XmlAccessType.FIELD) |
|
| 36 | @XmlType(name = "tCategory", propOrder = { |
|
| 37 | "value" |
|
| 38 | }) |
|
| 39 | 3964 | public class TCategory { |
| 40 | ||
| 41 | @XmlValue |
|
| 42 | protected String value; |
|
| 43 | @XmlAttribute |
|
| 44 | protected String domain; |
|
| 45 | ||
| 46 | /** |
|
| 47 | * Gets the value of the value property. |
|
| 48 | * |
|
| 49 | * @return |
|
| 50 | * possible object is |
|
| 51 | * {@link String } |
|
| 52 | * |
|
| 53 | */ |
|
| 54 | public String getValue() { |
|
| 55 | 3940 | return value; |
| 56 | } |
|
| 57 | ||
| 58 | /** |
|
| 59 | * Sets the value of the value property. |
|
| 60 | * |
|
| 61 | * @param value |
|
| 62 | * allowed object is |
|
| 63 | * {@link String } |
|
| 64 | * |
|
| 65 | */ |
|
| 66 | public void setValue(String value) { |
|
| 67 | 24 | this.value = value; |
| 68 | 24 | } |
| 69 | ||
| 70 | /** |
|
| 71 | * Gets the value of the domain property. |
|
| 72 | * |
|
| 73 | * @return |
|
| 74 | * possible object is |
|
| 75 | * {@link String } |
|
| 76 | * |
|
| 77 | */ |
|
| 78 | public String getDomain() { |
|
| 79 | 3940 | return domain; |
| 80 | } |
|
| 81 | ||
| 82 | /** |
|
| 83 | * Sets the value of the domain property. |
|
| 84 | * |
|
| 85 | * @param value |
|
| 86 | * allowed object is |
|
| 87 | * {@link String } |
|
| 88 | * |
|
| 89 | */ |
|
| 90 | public void setDomain(String value) { |
|
| 91 | 24 | this.domain = value; |
| 92 | 24 | } |
| 93 | ||
| 94 | } |