| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| AdminType |
|
| 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:46 AM EDT |
|
| 6 | // |
|
| 7 | ||
| 8 | ||
| 9 | package yarfraw.generated.admin.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 | ||
| 17 | ||
| 18 | /** |
|
| 19 | * <p>Java class for adminType complex type. |
|
| 20 | * |
|
| 21 | * <p>The following schema fragment specifies the expected content contained within this class. |
|
| 22 | * |
|
| 23 | * <pre> |
|
| 24 | * <complexType name="adminType"> |
|
| 25 | * <complexContent> |
|
| 26 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
|
| 27 | * <attribute ref="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}resource"/> |
|
| 28 | * </restriction> |
|
| 29 | * </complexContent> |
|
| 30 | * </complexType> |
|
| 31 | * </pre> |
|
| 32 | * |
|
| 33 | * |
|
| 34 | */ |
|
| 35 | @XmlAccessorType(XmlAccessType.FIELD) |
|
| 36 | @XmlType(name = "adminType") |
|
| 37 | 12 | public class AdminType { |
| 38 | ||
| 39 | @XmlAttribute(namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#") |
|
| 40 | @XmlSchemaType(name = "anyURI") |
|
| 41 | protected String resource; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * Gets the value of the resource property. |
|
| 45 | * |
|
| 46 | * @return |
|
| 47 | * possible object is |
|
| 48 | * {@link String } |
|
| 49 | * |
|
| 50 | */ |
|
| 51 | public String getResource() { |
|
| 52 | 0 | return resource; |
| 53 | } |
|
| 54 | ||
| 55 | /** |
|
| 56 | * Sets the value of the resource property. |
|
| 57 | * |
|
| 58 | * @param value |
|
| 59 | * allowed object is |
|
| 60 | * {@link String } |
|
| 61 | * |
|
| 62 | */ |
|
| 63 | public void setResource(String value) { |
|
| 64 | 6 | this.resource = value; |
| 65 | 6 | } |
| 66 | ||
| 67 | } |