Coverage Report - yarfraw.generated.atom03.ext.elements.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:45 AM EDT 
 6  
 //
 7  
 
 8  
 
 9  
 package yarfraw.generated.atom03.ext.elements;
 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 yarfraw.generated.atom03.ext.elements 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 _Info_QNAME = new QName("http://purl.org/atom/ns#", "info");
 35  0
     private final static QName _Tagline_QNAME = new QName("http://purl.org/atom/ns#", "tagline");
 36  0
     private final static QName _Issued_QNAME = new QName("http://purl.org/atom/ns#", "issued");
 37  0
     private final static QName _Summary_QNAME = new QName("http://purl.org/atom/ns#", "summary");
 38  0
     private final static QName _Content_QNAME = new QName("http://purl.org/atom/ns#", "content");
 39  0
     private final static QName _Title_QNAME = new QName("http://purl.org/atom/ns#", "title");
 40  
 
 41  
     /**
 42  
      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: yarfraw.generated.atom03.ext.elements
 43  
      * 
 44  
      */
 45  0
     public ObjectFactory() {
 46  0
     }
 47  
 
 48  
     /**
 49  
      * Create an instance of {@link Atom03Extension }
 50  
      * 
 51  
      */
 52  
     public Atom03Extension createAtom03Extension() {
 53  0
         return new Atom03Extension();
 54  
     }
 55  
 
 56  
     /**
 57  
      * Create an instance of {@link ContentType }
 58  
      * 
 59  
      */
 60  
     public ContentType createContentType() {
 61  0
         return new ContentType();
 62  
     }
 63  
 
 64  
     /**
 65  
      * Create an instance of {@link JAXBElement }{@code <}{@link ContentType }{@code >}}
 66  
      * 
 67  
      */
 68  
     @XmlElementDecl(namespace = "http://purl.org/atom/ns#", name = "info")
 69  
     public JAXBElement<ContentType> createInfo(ContentType value) {
 70  0
         return new JAXBElement<ContentType>(_Info_QNAME, ContentType.class, null, value);
 71  
     }
 72  
 
 73  
     /**
 74  
      * Create an instance of {@link JAXBElement }{@code <}{@link ContentType }{@code >}}
 75  
      * 
 76  
      */
 77  
     @XmlElementDecl(namespace = "http://purl.org/atom/ns#", name = "tagline")
 78  
     public JAXBElement<ContentType> createTagline(ContentType value) {
 79  0
         return new JAXBElement<ContentType>(_Tagline_QNAME, ContentType.class, null, value);
 80  
     }
 81  
 
 82  
     /**
 83  
      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
 84  
      * 
 85  
      */
 86  
     @XmlElementDecl(namespace = "http://purl.org/atom/ns#", name = "issued")
 87  
     public JAXBElement<String> createIssued(String value) {
 88  0
         return new JAXBElement<String>(_Issued_QNAME, String.class, null, value);
 89  
     }
 90  
 
 91  
     /**
 92  
      * Create an instance of {@link JAXBElement }{@code <}{@link ContentType }{@code >}}
 93  
      * 
 94  
      */
 95  
     @XmlElementDecl(namespace = "http://purl.org/atom/ns#", name = "summary")
 96  
     public JAXBElement<ContentType> createSummary(ContentType value) {
 97  0
         return new JAXBElement<ContentType>(_Summary_QNAME, ContentType.class, null, value);
 98  
     }
 99  
 
 100  
     /**
 101  
      * Create an instance of {@link JAXBElement }{@code <}{@link ContentType }{@code >}}
 102  
      * 
 103  
      */
 104  
     @XmlElementDecl(namespace = "http://purl.org/atom/ns#", name = "content")
 105  
     public JAXBElement<ContentType> createContent(ContentType value) {
 106  0
         return new JAXBElement<ContentType>(_Content_QNAME, ContentType.class, null, value);
 107  
     }
 108  
 
 109  
     /**
 110  
      * Create an instance of {@link JAXBElement }{@code <}{@link ContentType }{@code >}}
 111  
      * 
 112  
      */
 113  
     @XmlElementDecl(namespace = "http://purl.org/atom/ns#", name = "title")
 114  
     public JAXBElement<ContentType> createTitle(ContentType value) {
 115  0
         return new JAXBElement<ContentType>(_Title_QNAME, ContentType.class, null, value);
 116  
     }
 117  
 
 118  
 }