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

Revision 298, 3.0 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.26 at 01:00:53 PM JST
23//
24
25
26package util.resource;
27
28import javax.xml.bind.annotation.XmlRegistry;
29
30import util.Parameter;
31import util.Sref;
32
33
34/**
35 * This object contains factory methods for each
36 * Java content interface and Java element interface
37 * generated in the util.resource package.
38 * <p>An ObjectFactory allows you to programatically
39 * construct new instances of the Java representation
40 * for XML content. The Java representation of XML
41 * content can consist of schema derived interfaces
42 * and classes representing the binding of schema
43 * type definitions, element declarations and model
44 * groups.  Factory methods for each of these are
45 * provided in this class.
46 *
47 */
48@XmlRegistry
49public class ObjectFactory {
50
51
52    /**
53     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: util.resource
54     *
55     */
56    public ObjectFactory() {
57    }
58
59    /**
60     * Create an instance of {@link Resources.Resource }
61     *
62     */
63    public Resources.Resource createResourcesResource() {
64        return new Resources.Resource();
65    }
66
67    /**
68     * Create an instance of {@link Resources.Resource.Services.Sref }
69     *
70     */
71    public Sref createResourcesResourceServicesSref() {
72        return new Sref();
73    }
74
75    /**
76     * Create an instance of {@link Parameter }
77     *
78     */
79    public Parameter createParameter() {
80        return new Parameter();
81    }
82
83    /**
84     * Create an instance of {@link Resources.Resource.Services }
85     *
86     */
87    public Resources.Resource.Services createResourcesResourceServices() {
88        return new Resources.Resource.Services();
89    }
90
91    /**
92     * Create an instance of {@link Resources }
93     *
94     */
95    public Resources createResources() {
96        return new Resources();
97    }
98
99    /**
100     * Create an instance of {@link Resources.Resource.Parameters }
101     *
102     */
103    public Resources.Resource.Parameters createResourcesResourceParameters() {
104        return new Resources.Resource.Parameters();
105    }
106
107}
Note: See TracBrowser for help on using the browser.