xml.config
Class ObjectFactory

java.lang.Object
  extended byjavax.xml.bind.JAXBContext
      extended bycom.sun.xml.bind.DefaultJAXBContextImpl
          extended byxml.config.ObjectFactory

public class ObjectFactory
extends com.sun.xml.bind.DefaultJAXBContextImpl

This object contains factory methods for each Java content interface and Java element interface generated in the xml.config 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.


Field Summary
 
Fields inherited from class javax.xml.bind.JAXBContext
JAXB_CONTEXT_FACTORY
 
Constructor Summary
ObjectFactory()
          Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: xml.config
 
Method Summary
 Config createConfig()
          Create an instance of Config
 ConfigType createConfigType()
          Create an instance of ConfigType
 ConfigType.DatabaseType createConfigTypeDatabaseType()
          Create an instance of ConfigTypeDatabaseType
 java.lang.Object getProperty(java.lang.String name)
          Get the specified property.
 java.lang.Object newInstance(java.lang.Class javaContentInterface)
          Create an instance of the specified Java content interface.
 void setProperty(java.lang.String name, java.lang.Object value)
          Set the specified property.
 
Methods inherited from class com.sun.xml.bind.DefaultJAXBContextImpl
createMarshaller, createUnmarshaller, createValidator, getGrammar
 
Methods inherited from class javax.xml.bind.JAXBContext
newInstance, newInstance
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ObjectFactory

public ObjectFactory()
Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: xml.config

Method Detail

newInstance

public java.lang.Object newInstance(java.lang.Class javaContentInterface)
                             throws javax.xml.bind.JAXBException
Create an instance of the specified Java content interface.

Parameters:
javaContentInterface - the Class object of the javacontent interface to instantiate
Returns:
a new instance
Throws:
JAXBException - if an error occurs

getProperty

public java.lang.Object getProperty(java.lang.String name)
                             throws javax.xml.bind.PropertyException
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.

Parameters:
name - the name of the property to retrieve
Returns:
the value of the requested property
Throws:
PropertyException - when there is an error retrieving the given property or value

setProperty

public void setProperty(java.lang.String name,
                        java.lang.Object value)
                 throws javax.xml.bind.PropertyException
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.

Parameters:
name - the name of the property to retrieve
value - the value of the property to be set
Throws:
PropertyException - when there is an error processing the given property or value

createConfig

public Config createConfig()
                    throws javax.xml.bind.JAXBException
Create an instance of Config

Throws:
JAXBException - if an error occurs

createConfigTypeDatabaseType

public ConfigType.DatabaseType createConfigTypeDatabaseType()
                                                     throws javax.xml.bind.JAXBException
Create an instance of ConfigTypeDatabaseType

Throws:
JAXBException - if an error occurs

createConfigType

public ConfigType createConfigType()
                            throws javax.xml.bind.JAXBException
Create an instance of ConfigType

Throws:
JAXBException - if an error occurs