1
2
3
4
5
6
7
8
9 package org.xmlhammer.model.project;
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
16
17 /***
18 * <p>Java class for document complex type.
19 *
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 *
22 * <pre>
23 * <complexType name="document">
24 * <complexContent>
25 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26 * <attribute name="src" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
27 * </restriction>
28 * </complexContent>
29 * </complexType>
30 * </pre>
31 *
32 *
33 */
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "document")
36 public class Document {
37
38 @XmlAttribute(required = true)
39 protected java.lang.String src;
40
41 /***
42 * Gets the value of the src property.
43 *
44 * @return
45 * possible object is
46 * {@link java.lang.String }
47 *
48 */
49 public java.lang.String getSrc() {
50 return src;
51 }
52
53 /***
54 * Sets the value of the src property.
55 *
56 * @param value
57 * allowed object is
58 * {@link java.lang.String }
59 *
60 */
61 public void setSrc(java.lang.String value) {
62 this.src = value;
63 }
64
65 }