Coverage Report - yarfraw.generated.slash.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:46 AM EDT 
 6  
 //
 7  
 
 8  
 
 9  
 package yarfraw.generated.slash.elements;
 10  
 
 11  
 import java.math.BigInteger;
 12  
 import javax.xml.bind.JAXBElement;
 13  
 import javax.xml.bind.annotation.XmlElementDecl;
 14  
 import javax.xml.bind.annotation.XmlRegistry;
 15  
 import javax.xml.namespace.QName;
 16  
 
 17  
 
 18  
 /**
 19  
  * This object contains factory methods for each 
 20  
  * Java content interface and Java element interface 
 21  
  * generated in the yarfraw.generated.slash.elements package. 
 22  
  * <p>An ObjectFactory allows you to programatically 
 23  
  * construct new instances of the Java representation 
 24  
  * for XML content. The Java representation of XML 
 25  
  * content can consist of schema derived interfaces 
 26  
  * and classes representing the binding of schema 
 27  
  * type definitions, element declarations and model 
 28  
  * groups.  Factory methods for each of these are 
 29  
  * provided in this class.
 30  
  * 
 31  
  */
 32  
 @XmlRegistry
 33  
 public class ObjectFactory {
 34  
 
 35  0
     private final static QName _Department_QNAME = new QName("http://purl.org/rss/1.0/modules/slash/", "department");
 36  0
     private final static QName _HitParade_QNAME = new QName("http://purl.org/rss/1.0/modules/slash/", "hit_parade");
 37  0
     private final static QName _Section_QNAME = new QName("http://purl.org/rss/1.0/modules/slash/", "section");
 38  0
     private final static QName _Comments_QNAME = new QName("http://purl.org/rss/1.0/modules/slash/", "comments");
 39  
 
 40  
     /**
 41  
      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: yarfraw.generated.slash.elements
 42  
      * 
 43  
      */
 44  0
     public ObjectFactory() {
 45  0
     }
 46  
 
 47  
     /**
 48  
      * Create an instance of {@link SlashExtension }
 49  
      * 
 50  
      */
 51  
     public SlashExtension createSlashExtension() {
 52  0
         return new SlashExtension();
 53  
     }
 54  
 
 55  
     /**
 56  
      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
 57  
      * 
 58  
      */
 59  
     @XmlElementDecl(namespace = "http://purl.org/rss/1.0/modules/slash/", name = "department")
 60  
     public JAXBElement<String> createDepartment(String value) {
 61  0
         return new JAXBElement<String>(_Department_QNAME, String.class, null, value);
 62  
     }
 63  
 
 64  
     /**
 65  
      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
 66  
      * 
 67  
      */
 68  
     @XmlElementDecl(namespace = "http://purl.org/rss/1.0/modules/slash/", name = "hit_parade")
 69  
     public JAXBElement<String> createHitParade(String value) {
 70  0
         return new JAXBElement<String>(_HitParade_QNAME, String.class, null, value);
 71  
     }
 72  
 
 73  
     /**
 74  
      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
 75  
      * 
 76  
      */
 77  
     @XmlElementDecl(namespace = "http://purl.org/rss/1.0/modules/slash/", name = "section")
 78  
     public JAXBElement<String> createSection(String value) {
 79  0
         return new JAXBElement<String>(_Section_QNAME, String.class, null, value);
 80  
     }
 81  
 
 82  
     /**
 83  
      * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
 84  
      * 
 85  
      */
 86  
     @XmlElementDecl(namespace = "http://purl.org/rss/1.0/modules/slash/", name = "comments")
 87  
     public JAXBElement<BigInteger> createComments(BigInteger value) {
 88  0
         return new JAXBElement<BigInteger>(_Comments_QNAME, BigInteger.class, null, value);
 89  
     }
 90  
 
 91  
 }