
org.jvnet.hyperjaxb2.tests.ak.ObjectFactory Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-01/24/2006 06:08 PM(kohsuke)-fcs
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2007.05.21 at 04:17:03 PM CEST
//
package org.jvnet.hyperjaxb2.tests.ak;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the org.jvnet.hyperjaxb2.tests.ak 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.
*
*/
public class ObjectFactory
extends org.jvnet.hyperjaxb2.tests.ak.impl.runtime.DefaultJAXBContextImpl
{
private static java.util.HashMap defaultImplementations = new java.util.HashMap(16, 0.75F);
private static java.util.HashMap rootTagMap = new java.util.HashMap();
public final static org.jvnet.hyperjaxb2.tests.ak.impl.runtime.GrammarInfo grammarInfo = new org.jvnet.hyperjaxb2.tests.ak.impl.runtime.GrammarInfoImpl(rootTagMap, defaultImplementations, (org.jvnet.hyperjaxb2.tests.ak.ObjectFactory.class));
public final static java.lang.Class version = (org.jvnet.hyperjaxb2.tests.ak.impl.JAXBVersion.class);
static {
defaultImplementations.put((org.jvnet.hyperjaxb2.tests.ak.TblChild.class), "org.jvnet.hyperjaxb2.tests.ak.impl.TblChildImpl");
defaultImplementations.put((org.jvnet.hyperjaxb2.tests.ak.TblGrandchild.class), "org.jvnet.hyperjaxb2.tests.ak.impl.TblGrandchildImpl");
defaultImplementations.put((org.jvnet.hyperjaxb2.tests.ak.TblParent.class), "org.jvnet.hyperjaxb2.tests.ak.impl.TblParentImpl");
defaultImplementations.put((org.jvnet.hyperjaxb2.tests.ak.Parent.class), "org.jvnet.hyperjaxb2.tests.ak.impl.ParentImpl");
rootTagMap.put(new javax.xml.namespace.QName("", "Parent"), (org.jvnet.hyperjaxb2.tests.ak.Parent.class));
}
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.jvnet.hyperjaxb2.tests.ak
*
*/
public ObjectFactory() {
super(grammarInfo);
}
/**
* Create an instance of the specified Java content interface.
*
* @param javaContentInterface
* the Class object of the javacontent interface to instantiate
* @return
* a new instance
* @throws JAXBException
* if an error occurs
*/
public java.lang.Object newInstance(java.lang.Class javaContentInterface)
throws javax.xml.bind.JAXBException
{
return super.newInstance(javaContentInterface);
}
/**
* Get the specified property. This method can only be
* used to get provider specific properties.
* Attempting to get an undefined property will result
* in a PropertyException being thrown.
*
* @param name
* the name of the property to retrieve
* @return
* the value of the requested property
* @throws PropertyException
* when there is an error retrieving the given property or value
*/
public java.lang.Object getProperty(java.lang.String name)
throws javax.xml.bind.PropertyException
{
return super.getProperty(name);
}
/**
* Set the specified property. This method can only be
* used to set provider specific properties.
* Attempting to set an undefined property will result
* in a PropertyException being thrown.
*
* @param value
* the value of the property to be set
* @param name
* the name of the property to retrieve
* @throws PropertyException
* when there is an error processing the given property or value
*/
public void setProperty(java.lang.String name, java.lang.Object value)
throws javax.xml.bind.PropertyException
{
super.setProperty(name, value);
}
/**
* Create an instance of TblChild
*
* @throws JAXBException
* if an error occurs
*/
public org.jvnet.hyperjaxb2.tests.ak.TblChild createTblChild()
throws javax.xml.bind.JAXBException
{
return new org.jvnet.hyperjaxb2.tests.ak.impl.TblChildImpl();
}
/**
* Create an instance of TblGrandchild
*
* @throws JAXBException
* if an error occurs
*/
public org.jvnet.hyperjaxb2.tests.ak.TblGrandchild createTblGrandchild()
throws javax.xml.bind.JAXBException
{
return new org.jvnet.hyperjaxb2.tests.ak.impl.TblGrandchildImpl();
}
/**
* Create an instance of TblParent
*
* @throws JAXBException
* if an error occurs
*/
public org.jvnet.hyperjaxb2.tests.ak.TblParent createTblParent()
throws javax.xml.bind.JAXBException
{
return new org.jvnet.hyperjaxb2.tests.ak.impl.TblParentImpl();
}
/**
* Create an instance of Parent
*
* @throws JAXBException
* if an error occurs
*/
public org.jvnet.hyperjaxb2.tests.ak.Parent createParent()
throws javax.xml.bind.JAXBException
{
return new org.jvnet.hyperjaxb2.tests.ak.impl.ParentImpl();
}
}