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