Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ObjectFactory |
|
| 1.0;1 |
1 | /** | |
2 | * Copyright 2010 The Kuali Foundation Licensed under the | |
3 | * Educational Community License, Version 2.0 (the "License"); you may | |
4 | * not use this file except in compliance with the License. You may | |
5 | * obtain a copy of the License at | |
6 | * | |
7 | * http://www.osedu.org/licenses/ECL-2.0 | |
8 | * | |
9 | * Unless required by applicable law or agreed to in writing, | |
10 | * software distributed under the License is distributed on an "AS IS" | |
11 | * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | |
12 | * or implied. See the License for the specific language governing | |
13 | * permissions and limitations under the License. | |
14 | */ | |
15 | ||
16 | // | |
17 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 | |
18 | // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> | |
19 | // Any modifications to this file will be lost upon recompilation of the source schema. | |
20 | // Generated on: 2010.01.08 at 02:11:47 PM EST | |
21 | // | |
22 | ||
23 | ||
24 | package org.kuali.student.core.organization.dynamic; | |
25 | ||
26 | import javax.xml.bind.JAXBElement; | |
27 | import javax.xml.bind.annotation.XmlElementDecl; | |
28 | import javax.xml.bind.annotation.XmlRegistry; | |
29 | import javax.xml.namespace.QName; | |
30 | ||
31 | ||
32 | /** | |
33 | * This object contains factory methods for each | |
34 | * Java content interface and Java element interface | |
35 | * generated in the sectionConfig package. | |
36 | * <p>An ObjectFactory allows you to programatically | |
37 | * construct new instances of the Java representation | |
38 | * for XML content. The Java representation of XML | |
39 | * content can consist of schema derived interfaces | |
40 | * and classes representing the binding of schema | |
41 | * type definitions, element declarations and model | |
42 | * groups. Factory methods for each of these are | |
43 | * provided in this class. | |
44 | * | |
45 | */ | |
46 | @XmlRegistry | |
47 | public class ObjectFactory { | |
48 | ||
49 | 0 | private final static QName _SectionConfig_QNAME = new QName("", "sectionConfig"); |
50 | ||
51 | /** | |
52 | * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: sectionConfig | |
53 | * | |
54 | */ | |
55 | 0 | public ObjectFactory() { |
56 | 0 | } |
57 | ||
58 | /** | |
59 | * Create an instance of {@link MultipleField } | |
60 | * | |
61 | */ | |
62 | public MultipleField createMultipleField() { | |
63 | 0 | return new MultipleField(); |
64 | } | |
65 | ||
66 | /** | |
67 | * Create an instance of {@link Fields } | |
68 | * | |
69 | */ | |
70 | public Fields createFields() { | |
71 | 0 | return new Fields(); |
72 | } | |
73 | ||
74 | /** | |
75 | * Create an instance of {@link Field } | |
76 | * | |
77 | */ | |
78 | public Field createField() { | |
79 | 0 | return new Field(); |
80 | } | |
81 | ||
82 | /** | |
83 | * Create an instance of {@link Section } | |
84 | * | |
85 | */ | |
86 | public Section createSection() { | |
87 | 0 | return new Section(); |
88 | } | |
89 | ||
90 | /** | |
91 | * Create an instance of {@link SectionView } | |
92 | * | |
93 | */ | |
94 | public SectionView createSectionView() { | |
95 | 0 | return new SectionView(); |
96 | } | |
97 | ||
98 | /** | |
99 | * Create an instance of {@link SectionConfig } | |
100 | * | |
101 | */ | |
102 | public SectionConfig createSectionConfig() { | |
103 | 0 | return new SectionConfig(); |
104 | } | |
105 | ||
106 | /** | |
107 | * Create an instance of {@link JAXBElement }{@code <}{@link SectionConfig }{@code >}} | |
108 | * | |
109 | */ | |
110 | @XmlElementDecl(namespace = "", name = "sectionConfig") | |
111 | public JAXBElement<SectionConfig> createSectionConfig(SectionConfig value) { | |
112 | 0 | return new JAXBElement<SectionConfig>(_SectionConfig_QNAME, SectionConfig.class, null, value); |
113 | } | |
114 | ||
115 | } |