| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| MrssDescriptionType |
|
| 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.mrss.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 mrssDescriptionType complex type. |
|
| 20 | * |
|
| 21 | * <p>The following schema fragment specifies the expected content contained within this class. |
|
| 22 | * |
|
| 23 | * <pre> |
|
| 24 | * <complexType name="mrssDescriptionType"> |
|
| 25 | * <simpleContent> |
|
| 26 | * <extension base="<http://www.w3.org/2001/XMLSchema>string"> |
|
| 27 | * <attribute name="type"> |
|
| 28 | * <simpleType> |
|
| 29 | * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> |
|
| 30 | * <enumeration value="plain"/> |
|
| 31 | * <enumeration value="html"/> |
|
| 32 | * </restriction> |
|
| 33 | * </simpleType> |
|
| 34 | * </attribute> |
|
| 35 | * </extension> |
|
| 36 | * </simpleContent> |
|
| 37 | * </complexType> |
|
| 38 | * </pre> |
|
| 39 | * |
|
| 40 | * |
|
| 41 | */ |
|
| 42 | @XmlAccessorType(XmlAccessType.FIELD) |
|
| 43 | @XmlType(name = "mrssDescriptionType", propOrder = { |
|
| 44 | "value" |
|
| 45 | }) |
|
| 46 | 15 | public class MrssDescriptionType { |
| 47 | ||
| 48 | @XmlValue |
|
| 49 | protected String value; |
|
| 50 | @XmlAttribute |
|
| 51 | protected String type; |
|
| 52 | ||
| 53 | /** |
|
| 54 | * Gets the value of the value property. |
|
| 55 | * |
|
| 56 | * @return |
|
| 57 | * possible object is |
|
| 58 | * {@link String } |
|
| 59 | * |
|
| 60 | */ |
|
| 61 | public String getValue() { |
|
| 62 | 0 | return value; |
| 63 | } |
|
| 64 | ||
| 65 | /** |
|
| 66 | * Sets the value of the value property. |
|
| 67 | * |
|
| 68 | * @param value |
|
| 69 | * allowed object is |
|
| 70 | * {@link String } |
|
| 71 | * |
|
| 72 | */ |
|
| 73 | public void setValue(String value) { |
|
| 74 | 3 | this.value = value; |
| 75 | 3 | } |
| 76 | ||
| 77 | /** |
|
| 78 | * Gets the value of the type property. |
|
| 79 | * |
|
| 80 | * @return |
|
| 81 | * possible object is |
|
| 82 | * {@link String } |
|
| 83 | * |
|
| 84 | */ |
|
| 85 | public String getType() { |
|
| 86 | 0 | return type; |
| 87 | } |
|
| 88 | ||
| 89 | /** |
|
| 90 | * Sets the value of the type property. |
|
| 91 | * |
|
| 92 | * @param value |
|
| 93 | * allowed object is |
|
| 94 | * {@link String } |
|
| 95 | * |
|
| 96 | */ |
|
| 97 | public void setType(String value) { |
|
| 98 | 3 | this.type = value; |
| 99 | 3 | } |
| 100 | ||
| 101 | } |