| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ObjectFactory |
|
| 1.0;1 |
| 1 | // | |
| 2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 | |
| 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: 2012.12.18 at 09:26:19 AM EST | |
| 6 | // | |
| 7 | ||
| 8 | ||
| 9 | package net.sourceforge.pebble.dao.file; | |
| 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 net.sourceforge.pebble.dao.file 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 | 4 | private final static QName _Categories_QNAME = new QName("", "categories"); |
| 35 | 4 | private final static QName _StaticPage_QNAME = new QName("", "staticPage"); |
| 36 | ||
| 37 | /** | |
| 38 | * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: net.sourceforge.pebble.dao.file | |
| 39 | * | |
| 40 | */ | |
| 41 | 32 | public ObjectFactory() { |
| 42 | 32 | } |
| 43 | ||
| 44 | /** | |
| 45 | * Create an instance of {@link CategoriesType } | |
| 46 | * | |
| 47 | */ | |
| 48 | public CategoriesType createCategoriesType() { | |
| 49 | 0 | return new CategoriesType(); |
| 50 | } | |
| 51 | ||
| 52 | /** | |
| 53 | * Create an instance of {@link CategoryType } | |
| 54 | * | |
| 55 | */ | |
| 56 | public CategoryType createCategoryType() { | |
| 57 | 0 | return new CategoryType(); |
| 58 | } | |
| 59 | ||
| 60 | /** | |
| 61 | * Create an instance of {@link StaticPageType } | |
| 62 | * | |
| 63 | */ | |
| 64 | public StaticPageType createStaticPageType() { | |
| 65 | 0 | return new StaticPageType(); |
| 66 | } | |
| 67 | ||
| 68 | /** | |
| 69 | * Create an instance of {@link JAXBElement }{@code <}{@link CategoriesType }{@code >}} | |
| 70 | * | |
| 71 | */ | |
| 72 | @XmlElementDecl(namespace = "", name = "categories") | |
| 73 | public JAXBElement<CategoriesType> createCategories(CategoriesType value) { | |
| 74 | 32 | return new JAXBElement<CategoriesType>(_Categories_QNAME, CategoriesType.class, null, value); |
| 75 | } | |
| 76 | ||
| 77 | /** | |
| 78 | * Create an instance of {@link JAXBElement }{@code <}{@link StaticPageType }{@code >}} | |
| 79 | * | |
| 80 | */ | |
| 81 | @XmlElementDecl(namespace = "", name = "staticPage") | |
| 82 | public JAXBElement<StaticPageType> createStaticPage(StaticPageType value) { | |
| 83 | 0 | return new JAXBElement<StaticPageType>(_StaticPage_QNAME, StaticPageType.class, null, value); |
| 84 | } | |
| 85 | ||
| 86 | } |