| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| DcType |
|
| 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:45 AM EDT |
|
| 6 | // |
|
| 7 | ||
| 8 | ||
| 9 | package yarfraw.generated.rss10.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.XmlSchemaType; |
|
| 15 | import javax.xml.bind.annotation.XmlType; |
|
| 16 | import javax.xml.bind.annotation.XmlValue; |
|
| 17 | ||
| 18 | ||
| 19 | /** |
|
| 20 | * <p>Java class for dcType complex type. |
|
| 21 | * |
|
| 22 | * <p>The following schema fragment specifies the expected content contained within this class. |
|
| 23 | * |
|
| 24 | * <pre> |
|
| 25 | * <complexType name="dcType"> |
|
| 26 | * <simpleContent> |
|
| 27 | * <extension base="<http://www.w3.org/2001/XMLSchema>string"> |
|
| 28 | * <attGroup ref="{http://purl.org/dc/elements/1.1/}dcAttr"/> |
|
| 29 | * </extension> |
|
| 30 | * </simpleContent> |
|
| 31 | * </complexType> |
|
| 32 | * </pre> |
|
| 33 | * |
|
| 34 | * |
|
| 35 | */ |
|
| 36 | @XmlAccessorType(XmlAccessType.FIELD) |
|
| 37 | @XmlType(name = "dcType", namespace = "http://purl.org/dc/elements/1.1/", propOrder = { |
|
| 38 | "value" |
|
| 39 | }) |
|
| 40 | 933 | public class DcType { |
| 41 | ||
| 42 | @XmlValue |
|
| 43 | protected String value; |
|
| 44 | @XmlAttribute(namespace = "http://www.w3.org/XML/1998/namespace") |
|
| 45 | protected String lang; |
|
| 46 | @XmlAttribute(namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#") |
|
| 47 | @XmlSchemaType(name = "anyURI") |
|
| 48 | protected String about; |
|
| 49 | ||
| 50 | /** |
|
| 51 | * Gets the value of the value property. |
|
| 52 | * |
|
| 53 | * @return |
|
| 54 | * possible object is |
|
| 55 | * {@link String } |
|
| 56 | * |
|
| 57 | */ |
|
| 58 | public String getValue() { |
|
| 59 | 720 | return value; |
| 60 | } |
|
| 61 | ||
| 62 | /** |
|
| 63 | * Sets the value of the value property. |
|
| 64 | * |
|
| 65 | * @param value |
|
| 66 | * allowed object is |
|
| 67 | * {@link String } |
|
| 68 | * |
|
| 69 | */ |
|
| 70 | public void setValue(String value) { |
|
| 71 | 195 | this.value = value; |
| 72 | 195 | } |
| 73 | ||
| 74 | /** |
|
| 75 | * Gets the value of the lang property. |
|
| 76 | * |
|
| 77 | * @return |
|
| 78 | * possible object is |
|
| 79 | * {@link String } |
|
| 80 | * |
|
| 81 | */ |
|
| 82 | public String getLang() { |
|
| 83 | 0 | return lang; |
| 84 | } |
|
| 85 | ||
| 86 | /** |
|
| 87 | * Sets the value of the lang property. |
|
| 88 | * |
|
| 89 | * @param value |
|
| 90 | * allowed object is |
|
| 91 | * {@link String } |
|
| 92 | * |
|
| 93 | */ |
|
| 94 | public void setLang(String value) { |
|
| 95 | 3 | this.lang = value; |
| 96 | 3 | } |
| 97 | ||
| 98 | /** |
|
| 99 | * Gets the value of the about property. |
|
| 100 | * |
|
| 101 | * @return |
|
| 102 | * possible object is |
|
| 103 | * {@link String } |
|
| 104 | * |
|
| 105 | */ |
|
| 106 | public String getAbout() { |
|
| 107 | 0 | return about; |
| 108 | } |
|
| 109 | ||
| 110 | /** |
|
| 111 | * Sets the value of the about property. |
|
| 112 | * |
|
| 113 | * @param value |
|
| 114 | * allowed object is |
|
| 115 | * {@link String } |
|
| 116 | * |
|
| 117 | */ |
|
| 118 | public void setAbout(String value) { |
|
| 119 | 3 | this.about = value; |
| 120 | 3 | } |
| 121 | ||
| 122 | } |