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

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