Statistics
| Revision:

svn-gvsig-desktop / tmp / trunk / servidor / WorkSpace_Servidor / src / net / schema / ows / impl1_1_0 / ObjectFactory.java @ 26474

History | View | Annotate | Download (2.22 KB)

1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-20060719-fcs 
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: 2006.08.01 at 08:18:28 AM EDT 
6
//
7

    
8

    
9
package net.schema.ows.impl1_1_0;
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 net.schema.ows.impl1_1_0 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 _Exception_QNAME = new QName("http://www.opengeospatial.net/ows", "Exception");
35

    
36
    /**
37
     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: net.schema.ows.impl1_1_0
38
     * 
39
     */
40
    public ObjectFactory() {
41
    }
42

    
43
    /**
44
     * Create an instance of {@link ExceptionType }
45
     * 
46
     */
47
    public ExceptionType createExceptionType() {
48
        return new ExceptionType();
49
    }
50

    
51
    /**
52
     * Create an instance of {@link ExceptionReport }
53
     * 
54
     */
55
    public ExceptionReport createExceptionReport() {
56
        return new ExceptionReport();
57
    }
58

    
59
    /**
60
     * Create an instance of {@link JAXBElement }{@code <}{@link ExceptionType }{@code >}}
61
     * 
62
     */
63
    @XmlElementDecl(namespace = "http://www.opengeospatial.net/ows", name = "Exception")
64
    public JAXBElement<ExceptionType> createException(ExceptionType value) {
65
        return new JAXBElement<ExceptionType>(_Exception_QNAME, ExceptionType.class, null, value);
66
    }
67

    
68
}