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.XmlRootElement;
15 import javax.xml.bind.annotation.XmlType;
16
17
18 /***
19 * <p>Java class for schemaValidator element declaration.
20 *
21 * <p>The following schema fragment specifies the expected content contained within this class.
22 *
23 * <pre>
24 * <element name="schemaValidator">
25 * <complexType>
26 * <complexContent>
27 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28 * <attribute name="language" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
29 * </restriction>
30 * </complexContent>
31 * </complexType>
32 * </element>
33 * </pre>
34 *
35 *
36 */
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "")
39 @XmlRootElement(name = "schemaValidator")
40 public class SchemaValidator {
41
42 @XmlAttribute(required = true)
43 protected java.lang.String language;
44
45 /***
46 * Gets the value of the language property.
47 *
48 * @return
49 * possible object is
50 * {@link java.lang.String }
51 *
52 */
53 public java.lang.String getLanguage() {
54 return language;
55 }
56
57 /***
58 * Sets the value of the language property.
59 *
60 * @param value
61 * allowed object is
62 * {@link java.lang.String }
63 *
64 */
65 public void setLanguage(java.lang.String value) {
66 this.language = value;
67 }
68
69 }