| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||||
| ItunesOwnerType |
|
| 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.itunes.elements; |
|
| 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 itunesOwnerType complex type. |
|
| 19 | * |
|
| 20 | * <p>The following schema fragment specifies the expected content contained within this class. |
|
| 21 | * |
|
| 22 | * <pre> |
|
| 23 | * <complexType name="itunesOwnerType"> |
|
| 24 | * <complexContent> |
|
| 25 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
|
| 26 | * <all> |
|
| 27 | * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> |
|
| 28 | * <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/> |
|
| 29 | * </all> |
|
| 30 | * </restriction> |
|
| 31 | * </complexContent> |
|
| 32 | * </complexType> |
|
| 33 | * </pre> |
|
| 34 | * |
|
| 35 | * |
|
| 36 | */ |
|
| 37 | @XmlAccessorType(XmlAccessType.FIELD) |
|
| 38 | @XmlType(name = "itunesOwnerType", propOrder = { |
|
| 39 | ||
| 40 | }) |
|
| 41 | public class ItunesOwnerType { |
|
| 42 | ||
| 43 | @XmlElement(required = true) |
|
| 44 | protected String name; |
|
| 45 | @XmlElement(required = true) |
|
| 46 | protected String email; |
|
| 47 | ||
| 48 | /** |
|
| 49 | * Gets the value of the name property. |
|
| 50 | * |
|
| 51 | * @return |
|
| 52 | * possible object is |
|
| 53 | * {@link String } |
|
| 54 | * |
|
| 55 | */ |
|
| 56 | public String getName() { |
|
| 57 | return name; |
|
| 58 | } |
|
| 59 | ||
| 60 | /** |
|
| 61 | * Sets the value of the name property. |
|
| 62 | * |
|
| 63 | * @param value |
|
| 64 | * allowed object is |
|
| 65 | * {@link String } |
|
| 66 | * |
|
| 67 | */ |
|
| 68 | public void setName(String value) { |
|
| 69 | this.name = value; |
|
| 70 | } |
|
| 71 | ||
| 72 | /** |
|
| 73 | * Gets the value of the email property. |
|
| 74 | * |
|
| 75 | * @return |
|
| 76 | * possible object is |
|
| 77 | * {@link String } |
|
| 78 | * |
|
| 79 | */ |
|
| 80 | public String getEmail() { |
|
| 81 | return email; |
|
| 82 | } |
|
| 83 | ||
| 84 | /** |
|
| 85 | * Sets the value of the email property. |
|
| 86 | * |
|
| 87 | * @param value |
|
| 88 | * allowed object is |
|
| 89 | * {@link String } |
|
| 90 | * |
|
| 91 | */ |
|
| 92 | public void setEmail(String value) { |
|
| 93 | this.email = value; |
|
| 94 | } |
|
| 95 | ||
| 96 | } |