1
2
3
4
5
6
7
8
9 package org.jomc.tools.model;
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 _SourceSections_QNAME = new QName("http://jomc.org/tools/model", "source-sections");
35 private final static QName _SourceSection_QNAME = new QName("http://jomc.org/tools/model", "source-section");
36 private final static QName _SourceFile_QNAME = new QName("http://jomc.org/tools/model", "source-file");
37 private final static QName _SourceFiles_QNAME = new QName("http://jomc.org/tools/model", "source-files");
38
39
40
41
42
43 public ObjectFactory() {
44 }
45
46
47
48
49
50 public SourceSectionsType createSourceSectionsType() {
51 return new SourceSectionsType();
52 }
53
54
55
56
57
58 public SourceFilesType createSourceFilesType() {
59 return new SourceFilesType();
60 }
61
62
63
64
65
66 public SourceFileType createSourceFileType() {
67 return new SourceFileType();
68 }
69
70
71
72
73
74 public ToolsType createToolsType() {
75 return new ToolsType();
76 }
77
78
79
80
81
82 public SourceSectionType createSourceSectionType() {
83 return new SourceSectionType();
84 }
85
86
87
88
89
90 @XmlElementDecl(namespace = "http://jomc.org/tools/model", name = "source-sections")
91 public JAXBElement<SourceSectionsType> createSourceSections(SourceSectionsType value) {
92 return new JAXBElement<SourceSectionsType>(_SourceSections_QNAME, SourceSectionsType.class, null, value);
93 }
94
95
96
97
98
99 @XmlElementDecl(namespace = "http://jomc.org/tools/model", name = "source-section")
100 public JAXBElement<SourceSectionType> createSourceSection(SourceSectionType value) {
101 return new JAXBElement<SourceSectionType>(_SourceSection_QNAME, SourceSectionType.class, null, value);
102 }
103
104
105
106
107
108 @XmlElementDecl(namespace = "http://jomc.org/tools/model", name = "source-file")
109 public JAXBElement<SourceFileType> createSourceFile(SourceFileType value) {
110 return new JAXBElement<SourceFileType>(_SourceFile_QNAME, SourceFileType.class, null, value);
111 }
112
113
114
115
116
117 @XmlElementDecl(namespace = "http://jomc.org/tools/model", name = "source-files")
118 public JAXBElement<SourceFilesType> createSourceFiles(SourceFilesType value) {
119 return new JAXBElement<SourceFilesType>(_SourceFiles_QNAME, SourceFilesType.class, null, value);
120 }
121
122 }