1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.1-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: 2007.06.14 at 09:51:58 AM BST
6 //
7
8
9 package org.tdwg.ontology;
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.XmlRootElement;
15 import javax.xml.bind.annotation.XmlType;
16
17
18 /**
19 * <p>Java class for anonymous complex type.
20 *
21 * <p>The following schema fragment specifies the expected content contained within this class.
22 *
23 * <pre>
24 * <complexType>
25 * <complexContent>
26 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27 * <attribute name="rdf_resource" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
28 * </restriction>
29 * </complexContent>
30 * </complexType>
31 * </pre>
32 *
33 *
34 */
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "")
37 @XmlRootElement(name = "conformsTo")
38 public class ConformsTo {
39
40 @XmlAttribute(name = "rdf_resource", required = true)
41 protected String rdfResource;
42
43 /**
44 * Gets the value of the rdfResource property.
45 *
46 * @return
47 * possible object is
48 * {@link String }
49 *
50 */
51 public String getRdfResource() {
52 return rdfResource;
53 }
54
55 /**
56 * Sets the value of the rdfResource property.
57 *
58 * @param value
59 * allowed object is
60 * {@link String }
61 *
62 */
63 public void setRdfResource(String value) {
64 this.rdfResource = value;
65 }
66
67 }