1
2
3
4
5
6
7
8
9 package org.jomc.model.test;
10
11 import javax.xml.bind.JAXBElement;
12 import javax.xml.bind.annotation.XmlElementDecl;
13 import javax.xml.bind.annotation.XmlRegistry;
14 import javax.xml.namespace.QName;
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31 @XmlRegistry
32 public class ObjectFactory {
33
34 private final static QName _TestInheritable_QNAME = new QName("http://jomc.org/model/test", "test-inheritable");
35 private final static QName _Testsuite_QNAME = new QName("http://jomc.org/model/test", "testsuite");
36
37
38
39
40
41 public ObjectFactory() {
42 }
43
44
45
46
47
48 public ModelValidationReportDetail createModelValidationReportDetail() {
49 return new ModelValidationReportDetail();
50 }
51
52
53
54
55
56 public ImplementationTestType createImplementationTestType() {
57 return new ImplementationTestType();
58 }
59
60
61
62
63
64 public InstanceTestType createInstanceTestType() {
65 return new InstanceTestType();
66 }
67
68
69
70
71
72 public ModulesConstraintsTestType createModulesConstraintsTestType() {
73 return new ModulesConstraintsTestType();
74 }
75
76
77
78
79
80 public TestSuite createTestSuite() {
81 return new TestSuite();
82 }
83
84
85
86
87
88 public TestInheritable createTestInheritable() {
89 return new TestInheritable();
90 }
91
92
93
94
95
96 public SchemaConstraintsTestType createSchemaConstraintsTestType() {
97 return new SchemaConstraintsTestType();
98 }
99
100
101
102
103
104 public AnyModelObject createAnyModelObject() {
105 return new AnyModelObject();
106 }
107
108
109
110
111
112 @XmlElementDecl(namespace = "http://jomc.org/model/test", name = "test-inheritable")
113 public JAXBElement<TestInheritable> createTestInheritable(TestInheritable value) {
114 return new JAXBElement<TestInheritable>(_TestInheritable_QNAME, TestInheritable.class, null, value);
115 }
116
117
118
119
120
121 @XmlElementDecl(namespace = "http://jomc.org/model/test", name = "testsuite")
122 public JAXBElement<TestSuite> createTestsuite(TestSuite value) {
123 return new JAXBElement<TestSuite>(_Testsuite_QNAME, TestSuite.class, null, value);
124 }
125
126 }