root/tools/routingservice/branches/wrs-2.0/src/util/conf/ObjectFactory.java

Revision 298, 2.6 KB (checked in by anton, 19 months ago)

Parameter values overriding implemented, GPL headers added

Line 
1/*  WRS 2.0
2 *  Copyright (C) 2009 Anton Patrushev
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18//
19// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6
20// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
21// Any modifications to this file will be lost upon recompilation of the source schema.
22// Generated on: 2009.03.24 at 07:10:14 PM JST
23//
24
25
26package util.conf;
27
28import javax.xml.bind.annotation.XmlRegistry;
29
30
31/**
32 * This object contains factory methods for each
33 * Java content interface and Java element interface
34 * generated in the util.conf package.
35 * <p>An ObjectFactory allows you to programatically
36 * construct new instances of the Java representation
37 * for XML content. The Java representation of XML
38 * content can consist of schema derived interfaces
39 * and classes representing the binding of schema
40 * type definitions, element declarations and model
41 * groups.  Factory methods for each of these are
42 * provided in this class.
43 *
44 */
45@XmlRegistry
46public class ObjectFactory {
47
48
49    /**
50     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: util.conf
51     *
52     */
53    public ObjectFactory() {
54    }
55
56    /**
57     * Create an instance of {@link Configuration.Includes.Include }
58     *
59     */
60    public Configuration.Includes.Include createConfigurationIncludesInclude() {
61        return new Configuration.Includes.Include();
62    }
63
64    /**
65     * Create an instance of {@link Configuration.Includes }
66     *
67     */
68    public Configuration.Includes createConfigurationIncludes() {
69        return new Configuration.Includes();
70    }
71
72    /**
73     * Create an instance of {@link Configuration.Log }
74     *
75     */
76    public Configuration.Log createConfigurationLog() {
77        return new Configuration.Log();
78    }
79
80    /**
81     * Create an instance of {@link Configuration }
82     *
83     */
84    public Configuration createConfiguration() {
85        return new Configuration();
86    }
87
88}
Note: See TracBrowser for help on using the browser.