Coverage Report - yarfraw.generated.admin.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.admin.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.admin.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 _GeneratorAgent_QNAME = new QName("http://webns.net/mvcb/", "generatorAgent");
 35  0
     private final static QName _ErrorReportsTo_QNAME = new QName("http://webns.net/mvcb/", "errorReportsTo");
 36  
 
 37  
     /**
 38  
      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: yarfraw.generated.admin.elements
 39  
      * 
 40  
      */
 41  0
     public ObjectFactory() {
 42  0
     }
 43  
 
 44  
     /**
 45  
      * Create an instance of {@link AdminType }
 46  
      * 
 47  
      */
 48  
     public AdminType createAdminType() {
 49  0
         return new AdminType();
 50  
     }
 51  
 
 52  
     /**
 53  
      * Create an instance of {@link AdminExtension }
 54  
      * 
 55  
      */
 56  
     public AdminExtension createAdminExtension() {
 57  0
         return new AdminExtension();
 58  
     }
 59  
 
 60  
     /**
 61  
      * Create an instance of {@link JAXBElement }{@code <}{@link AdminType }{@code >}}
 62  
      * 
 63  
      */
 64  
     @XmlElementDecl(namespace = "http://webns.net/mvcb/", name = "generatorAgent")
 65  
     public JAXBElement<AdminType> createGeneratorAgent(AdminType value) {
 66  0
         return new JAXBElement<AdminType>(_GeneratorAgent_QNAME, AdminType.class, null, value);
 67  
     }
 68  
 
 69  
     /**
 70  
      * Create an instance of {@link JAXBElement }{@code <}{@link AdminType }{@code >}}
 71  
      * 
 72  
      */
 73  
     @XmlElementDecl(namespace = "http://webns.net/mvcb/", name = "errorReportsTo")
 74  
     public JAXBElement<AdminType> createErrorReportsTo(AdminType value) {
 75  0
         return new JAXBElement<AdminType>(_ErrorReportsTo_QNAME, AdminType.class, null, value);
 76  
     }
 77  
 
 78  
 }