// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.6 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2007.07.21 at 08:48:24 AM CEST // package net.dotmyself.j2xml; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each * Java content interface and Java element interface * generated in the net.dotmyself.j2xml package. *

An ObjectFactory allows you to programatically * construct new instances of the Java representation * for XML content. The Java representation of XML * content can consist of schema derived interfaces * and classes representing the binding of schema * type definitions, element declarations and model * groups. Factory methods for each of these are * provided in this class. * */ @XmlRegistry public class ObjectFactory { private final static QName _Begindate_QNAME = new QName("http://dotmyself.net/j2xml", "begindate"); private final static QName _User_QNAME = new QName("http://dotmyself.net/j2xml", "user"); private final static QName _Title_QNAME = new QName("http://dotmyself.net/j2xml", "title"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: net.dotmyself.j2xml * */ public ObjectFactory() { } /** * Create an instance of {@link Rentals } * */ public Rentals createRentals() { return new Rentals(); } /** * Create an instance of {@link Rental } * */ public Rental createRental() { return new Rental(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ @XmlElementDecl(namespace = "http://dotmyself.net/j2xml", name = "begindate") public JAXBElement createBegindate(String value) { return new JAXBElement(_Begindate_QNAME, String.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}} * */ @XmlElementDecl(namespace = "http://dotmyself.net/j2xml", name = "user") public JAXBElement createUser(Integer value) { return new JAXBElement(_User_QNAME, Integer.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ @XmlElementDecl(namespace = "http://dotmyself.net/j2xml", name = "title") public JAXBElement createTitle(String value) { return new JAXBElement(_Title_QNAME, String.class, null, value); } }