Coverage Report - org.georss.georss._10.ObjectFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
ObjectFactory
0% 
N/A 
0
 
 1  
 //
 2  
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-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: 2008.06.11 at 12:15:46 AM EDT 
 6  
 //
 7  
 
 8  
 
 9  
 package org.georss.georss._10;
 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 org.georss.georss._10 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  0
     private final static QName _Polygon_QNAME = new QName("http://www.georss.org/georss/10", "polygon");
 35  0
     private final static QName _Line_QNAME = new QName("http://www.georss.org/georss/10", "line");
 36  0
     private final static QName _Where_QNAME = new QName("http://www.georss.org/georss/10", "where");
 37  0
     private final static QName _Box_QNAME = new QName("http://www.georss.org/georss/10", "box");
 38  0
     private final static QName _Point_QNAME = new QName("http://www.georss.org/georss/10", "point");
 39  
 
 40  
     /**
 41  
      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.georss.georss._10
 42  
      * 
 43  
      */
 44  0
     public ObjectFactory() {
 45  0
     }
 46  
 
 47  
     /**
 48  
      * Create an instance of {@link GeoRssExtension }
 49  
      * 
 50  
      */
 51  
     public GeoRssExtension createGeoRssExtension() {
 52  0
         return new GeoRssExtension();
 53  
     }
 54  
 
 55  
     /**
 56  
      * Create an instance of {@link Where }
 57  
      * 
 58  
      */
 59  
     public Where createWhere() {
 60  0
         return new Where();
 61  
     }
 62  
 
 63  
     /**
 64  
      * Create an instance of {@link SimplePositionType }
 65  
      * 
 66  
      */
 67  
     public SimplePositionType createSimplePositionType() {
 68  0
         return new SimplePositionType();
 69  
     }
 70  
 
 71  
     /**
 72  
      * Create an instance of {@link JAXBElement }{@code <}{@link SimplePositionType }{@code >}}
 73  
      * 
 74  
      */
 75  
     @XmlElementDecl(namespace = "http://www.georss.org/georss/10", name = "polygon")
 76  
     public JAXBElement<SimplePositionType> createPolygon(SimplePositionType value) {
 77  0
         return new JAXBElement<SimplePositionType>(_Polygon_QNAME, SimplePositionType.class, null, value);
 78  
     }
 79  
 
 80  
     /**
 81  
      * Create an instance of {@link JAXBElement }{@code <}{@link SimplePositionType }{@code >}}
 82  
      * 
 83  
      */
 84  
     @XmlElementDecl(namespace = "http://www.georss.org/georss/10", name = "line")
 85  
     public JAXBElement<SimplePositionType> createLine(SimplePositionType value) {
 86  0
         return new JAXBElement<SimplePositionType>(_Line_QNAME, SimplePositionType.class, null, value);
 87  
     }
 88  
 
 89  
     /**
 90  
      * Create an instance of {@link JAXBElement }{@code <}{@link Where }{@code >}}
 91  
      * 
 92  
      */
 93  
     @XmlElementDecl(namespace = "http://www.georss.org/georss/10", name = "where")
 94  
     public JAXBElement<Where> createWhere(Where value) {
 95  0
         return new JAXBElement<Where>(_Where_QNAME, Where.class, null, value);
 96  
     }
 97  
 
 98  
     /**
 99  
      * Create an instance of {@link JAXBElement }{@code <}{@link SimplePositionType }{@code >}}
 100  
      * 
 101  
      */
 102  
     @XmlElementDecl(namespace = "http://www.georss.org/georss/10", name = "box")
 103  
     public JAXBElement<SimplePositionType> createBox(SimplePositionType value) {
 104  0
         return new JAXBElement<SimplePositionType>(_Box_QNAME, SimplePositionType.class, null, value);
 105  
     }
 106  
 
 107  
     /**
 108  
      * Create an instance of {@link JAXBElement }{@code <}{@link SimplePositionType }{@code >}}
 109  
      * 
 110  
      */
 111  
     @XmlElementDecl(namespace = "http://www.georss.org/georss/10", name = "point")
 112  
     public JAXBElement<SimplePositionType> createPoint(SimplePositionType value) {
 113  0
         return new JAXBElement<SimplePositionType>(_Point_QNAME, SimplePositionType.class, null, value);
 114  
     }
 115  
 
 116  
 }