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 TemplateParameterType createTemplateParameterType() {
59 return new TemplateParameterType();
60 }
61
62
63
64
65
66 public SourceSectionType createSourceSectionType() {
67 return new SourceSectionType();
68 }
69
70
71
72
73
74 public SourceFilesType createSourceFilesType() {
75 return new SourceFilesType();
76 }
77
78
79
80
81
82 public SourceFileType createSourceFileType() {
83 return new SourceFileType();
84 }
85
86
87
88
89
90 public ToolsType createToolsType() {
91 return new ToolsType();
92 }
93
94
95
96
97
98 @XmlElementDecl(namespace = "http://jomc.org/tools/model", name = "source-sections")
99 public JAXBElement<SourceSectionsType> createSourceSections(SourceSectionsType value) {
100 return new JAXBElement<SourceSectionsType>(_SourceSections_QNAME, SourceSectionsType.class, null, value);
101 }
102
103
104
105
106
107 @XmlElementDecl(namespace = "http://jomc.org/tools/model", name = "source-section")
108 public JAXBElement<SourceSectionType> createSourceSection(SourceSectionType value) {
109 return new JAXBElement<SourceSectionType>(_SourceSection_QNAME, SourceSectionType.class, null, value);
110 }
111
112
113
114
115
116 @XmlElementDecl(namespace = "http://jomc.org/tools/model", name = "source-file")
117 public JAXBElement<SourceFileType> createSourceFile(SourceFileType value) {
118 return new JAXBElement<SourceFileType>(_SourceFile_QNAME, SourceFileType.class, null, value);
119 }
120
121
122
123
124
125 @XmlElementDecl(namespace = "http://jomc.org/tools/model", name = "source-files")
126 public JAXBElement<SourceFilesType> createSourceFiles(SourceFilesType value) {
127 return new JAXBElement<SourceFilesType>(_SourceFiles_QNAME, SourceFilesType.class, null, value);
128 }
129
130 }