1 | // |
2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 |
3 | // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> |
4 | // Any modifications to this file will be lost upon recompilation of the source schema. |
5 | // Generated on: 2010.02.03 at 01:25:12 AM UTC |
6 | // |
7 | |
8 | |
9 | package org.jomc.model.bootstrap; |
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 | * This object contains factory methods for each |
19 | * Java content interface and Java element interface |
20 | * generated in the org.jomc.model.bootstrap package. |
21 | * <p>An ObjectFactory allows you to programatically |
22 | * construct new instances of the Java representation |
23 | * for XML content. The Java representation of XML |
24 | * content can consist of schema derived interfaces |
25 | * and classes representing the binding of schema |
26 | * type definitions, element declarations and model |
27 | * groups. Factory methods for each of these are |
28 | * provided in this class. |
29 | * |
30 | */ |
31 | @XmlRegistry |
32 | public class ObjectFactory { |
33 | |
34 | private final static QName _Schema_QNAME = new QName("http://jomc.org/model/bootstrap", "schema"); |
35 | private final static QName _Services_QNAME = new QName("http://jomc.org/model/bootstrap", "services"); |
36 | private final static QName _Schemas_QNAME = new QName("http://jomc.org/model/bootstrap", "schemas"); |
37 | private final static QName _Service_QNAME = new QName("http://jomc.org/model/bootstrap", "service"); |
38 | |
39 | /** |
40 | * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.jomc.model.bootstrap |
41 | * |
42 | */ |
43 | public ObjectFactory() { |
44 | } |
45 | |
46 | /** |
47 | * Create an instance of {@link Service } |
48 | * |
49 | */ |
50 | public Service createService() { |
51 | return new Service(); |
52 | } |
53 | |
54 | /** |
55 | * Create an instance of {@link BootstrapObject } |
56 | * |
57 | */ |
58 | public BootstrapObject createBootstrapObject() { |
59 | return new BootstrapObject(); |
60 | } |
61 | |
62 | /** |
63 | * Create an instance of {@link Schema } |
64 | * |
65 | */ |
66 | public Schema createSchema() { |
67 | return new Schema(); |
68 | } |
69 | |
70 | /** |
71 | * Create an instance of {@link Schemas } |
72 | * |
73 | */ |
74 | public Schemas createSchemas() { |
75 | return new Schemas(); |
76 | } |
77 | |
78 | /** |
79 | * Create an instance of {@link Services } |
80 | * |
81 | */ |
82 | public Services createServices() { |
83 | return new Services(); |
84 | } |
85 | |
86 | /** |
87 | * Create an instance of {@link JAXBElement }{@code <}{@link Schema }{@code >}} |
88 | * |
89 | */ |
90 | @XmlElementDecl(namespace = "http://jomc.org/model/bootstrap", name = "schema") |
91 | public JAXBElement<Schema> createSchema(Schema value) { |
92 | return new JAXBElement<Schema>(_Schema_QNAME, Schema.class, null, value); |
93 | } |
94 | |
95 | /** |
96 | * Create an instance of {@link JAXBElement }{@code <}{@link Services }{@code >}} |
97 | * |
98 | */ |
99 | @XmlElementDecl(namespace = "http://jomc.org/model/bootstrap", name = "services") |
100 | public JAXBElement<Services> createServices(Services value) { |
101 | return new JAXBElement<Services>(_Services_QNAME, Services.class, null, value); |
102 | } |
103 | |
104 | /** |
105 | * Create an instance of {@link JAXBElement }{@code <}{@link Schemas }{@code >}} |
106 | * |
107 | */ |
108 | @XmlElementDecl(namespace = "http://jomc.org/model/bootstrap", name = "schemas") |
109 | public JAXBElement<Schemas> createSchemas(Schemas value) { |
110 | return new JAXBElement<Schemas>(_Schemas_QNAME, Schemas.class, null, value); |
111 | } |
112 | |
113 | /** |
114 | * Create an instance of {@link JAXBElement }{@code <}{@link Service }{@code >}} |
115 | * |
116 | */ |
117 | @XmlElementDecl(namespace = "http://jomc.org/model/bootstrap", name = "service") |
118 | public JAXBElement<Service> createService(Service value) { |
119 | return new JAXBElement<Service>(_Service_QNAME, Service.class, null, value); |
120 | } |
121 | |
122 | } |