Coverage Report - yarfraw.generated.itunes.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.itunes.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.itunes.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 _Explicit_QNAME = new QName("http://www.itunes.com/dtds/podcast-1.0.dtd", "explicit");
 35  0
     private final static QName _Summary_QNAME = new QName("http://www.itunes.com/dtds/podcast-1.0.dtd", "summary");
 36  0
     private final static QName _Author_QNAME = new QName("http://www.itunes.com/dtds/podcast-1.0.dtd", "author");
 37  0
     private final static QName _Category_QNAME = new QName("http://www.itunes.com/dtds/podcast-1.0.dtd", "category");
 38  0
     private final static QName _Duration_QNAME = new QName("http://www.itunes.com/dtds/podcast-1.0.dtd", "duration");
 39  0
     private final static QName _Keywords_QNAME = new QName("http://www.itunes.com/dtds/podcast-1.0.dtd", "keywords");
 40  0
     private final static QName _Subtitle_QNAME = new QName("http://www.itunes.com/dtds/podcast-1.0.dtd", "subtitle");
 41  0
     private final static QName _Owner_QNAME = new QName("http://www.itunes.com/dtds/podcast-1.0.dtd", "owner");
 42  0
     private final static QName _Image_QNAME = new QName("http://www.itunes.com/dtds/podcast-1.0.dtd", "image");
 43  0
     private final static QName _Block_QNAME = new QName("http://www.itunes.com/dtds/podcast-1.0.dtd", "block");
 44  0
     private final static QName _NewFeedUrl_QNAME = new QName("http://www.itunes.com/dtds/podcast-1.0.dtd", "new-feed-url");
 45  
 
 46  
     /**
 47  
      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: yarfraw.generated.itunes.elements
 48  
      * 
 49  
      */
 50  0
     public ObjectFactory() {
 51  0
     }
 52  
 
 53  
     /**
 54  
      * Create an instance of {@link ItunesExtension }
 55  
      * 
 56  
      */
 57  
     public ItunesExtension createItunesExtension() {
 58  0
         return new ItunesExtension();
 59  
     }
 60  
 
 61  
     /**
 62  
      * Create an instance of {@link ItunesOwnerType }
 63  
      * 
 64  
      */
 65  
     public ItunesOwnerType createItunesOwnerType() {
 66  0
         return new ItunesOwnerType();
 67  
     }
 68  
 
 69  
     /**
 70  
      * Create an instance of {@link ItunesImageType }
 71  
      * 
 72  
      */
 73  
     public ItunesImageType createItunesImageType() {
 74  0
         return new ItunesImageType();
 75  
     }
 76  
 
 77  
     /**
 78  
      * Create an instance of {@link ItunesCategoryType }
 79  
      * 
 80  
      */
 81  
     public ItunesCategoryType createItunesCategoryType() {
 82  0
         return new ItunesCategoryType();
 83  
     }
 84  
 
 85  
     /**
 86  
      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
 87  
      * 
 88  
      */
 89  
     @XmlElementDecl(namespace = "http://www.itunes.com/dtds/podcast-1.0.dtd", name = "explicit")
 90  
     public JAXBElement<String> createExplicit(String value) {
 91  0
         return new JAXBElement<String>(_Explicit_QNAME, String.class, null, value);
 92  
     }
 93  
 
 94  
     /**
 95  
      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
 96  
      * 
 97  
      */
 98  
     @XmlElementDecl(namespace = "http://www.itunes.com/dtds/podcast-1.0.dtd", name = "summary")
 99  
     public JAXBElement<String> createSummary(String value) {
 100  0
         return new JAXBElement<String>(_Summary_QNAME, String.class, null, value);
 101  
     }
 102  
 
 103  
     /**
 104  
      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
 105  
      * 
 106  
      */
 107  
     @XmlElementDecl(namespace = "http://www.itunes.com/dtds/podcast-1.0.dtd", name = "author")
 108  
     public JAXBElement<String> createAuthor(String value) {
 109  0
         return new JAXBElement<String>(_Author_QNAME, String.class, null, value);
 110  
     }
 111  
 
 112  
     /**
 113  
      * Create an instance of {@link JAXBElement }{@code <}{@link ItunesCategoryType }{@code >}}
 114  
      * 
 115  
      */
 116  
     @XmlElementDecl(namespace = "http://www.itunes.com/dtds/podcast-1.0.dtd", name = "category")
 117  
     public JAXBElement<ItunesCategoryType> createCategory(ItunesCategoryType value) {
 118  0
         return new JAXBElement<ItunesCategoryType>(_Category_QNAME, ItunesCategoryType.class, null, value);
 119  
     }
 120  
 
 121  
     /**
 122  
      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
 123  
      * 
 124  
      */
 125  
     @XmlElementDecl(namespace = "http://www.itunes.com/dtds/podcast-1.0.dtd", name = "duration")
 126  
     public JAXBElement<String> createDuration(String value) {
 127  0
         return new JAXBElement<String>(_Duration_QNAME, String.class, null, value);
 128  
     }
 129  
 
 130  
     /**
 131  
      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
 132  
      * 
 133  
      */
 134  
     @XmlElementDecl(namespace = "http://www.itunes.com/dtds/podcast-1.0.dtd", name = "keywords")
 135  
     public JAXBElement<String> createKeywords(String value) {
 136  0
         return new JAXBElement<String>(_Keywords_QNAME, String.class, null, value);
 137  
     }
 138  
 
 139  
     /**
 140  
      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
 141  
      * 
 142  
      */
 143  
     @XmlElementDecl(namespace = "http://www.itunes.com/dtds/podcast-1.0.dtd", name = "subtitle")
 144  
     public JAXBElement<String> createSubtitle(String value) {
 145  0
         return new JAXBElement<String>(_Subtitle_QNAME, String.class, null, value);
 146  
     }
 147  
 
 148  
     /**
 149  
      * Create an instance of {@link JAXBElement }{@code <}{@link ItunesOwnerType }{@code >}}
 150  
      * 
 151  
      */
 152  
     @XmlElementDecl(namespace = "http://www.itunes.com/dtds/podcast-1.0.dtd", name = "owner")
 153  
     public JAXBElement<ItunesOwnerType> createOwner(ItunesOwnerType value) {
 154  0
         return new JAXBElement<ItunesOwnerType>(_Owner_QNAME, ItunesOwnerType.class, null, value);
 155  
     }
 156  
 
 157  
     /**
 158  
      * Create an instance of {@link JAXBElement }{@code <}{@link ItunesImageType }{@code >}}
 159  
      * 
 160  
      */
 161  
     @XmlElementDecl(namespace = "http://www.itunes.com/dtds/podcast-1.0.dtd", name = "image")
 162  
     public JAXBElement<ItunesImageType> createImage(ItunesImageType value) {
 163  0
         return new JAXBElement<ItunesImageType>(_Image_QNAME, ItunesImageType.class, null, value);
 164  
     }
 165  
 
 166  
     /**
 167  
      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
 168  
      * 
 169  
      */
 170  
     @XmlElementDecl(namespace = "http://www.itunes.com/dtds/podcast-1.0.dtd", name = "block")
 171  
     public JAXBElement<String> createBlock(String value) {
 172  0
         return new JAXBElement<String>(_Block_QNAME, String.class, null, value);
 173  
     }
 174  
 
 175  
     /**
 176  
      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
 177  
      * 
 178  
      */
 179  
     @XmlElementDecl(namespace = "http://www.itunes.com/dtds/podcast-1.0.dtd", name = "new-feed-url")
 180  
     public JAXBElement<String> createNewFeedUrl(String value) {
 181  0
         return new JAXBElement<String>(_NewFeedUrl_QNAME, String.class, null, value);
 182  
     }
 183  
 
 184  
 }