FileDocCategorySizeDatePackage
ObjectFactory.javaAPI DocExample5558Tue May 29 16:56:34 BST 2007com.sun.xml.ws.mex.client.schema

ObjectFactory

public class ObjectFactory extends Object
This object contains factory methods for each Java content interface and Java element interface generated in the com.sun.xml.ws.mex.client.schema 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.

Fields Summary
private static final QName
_Location_QNAME
private static final QName
_Dialect_QNAME
private static final QName
_Identifier_QNAME
Constructors Summary
public ObjectFactory()
Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.sun.xml.ws.mex.client.schema


                             
      
    
Methods Summary
public javax.xml.bind.JAXBElementcreateDialect(java.lang.String value)
Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}

        return new JAXBElement<String>(_Dialect_QNAME, String.class, null, value);
    
public GetMetadatacreateGetMetadata()
Create an instance of {@link GetMetadata }

        return new GetMetadata();
    
public javax.xml.bind.JAXBElementcreateIdentifier(java.lang.String value)
Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}

        return new JAXBElement<String>(_Identifier_QNAME, String.class, null, value);
    
public javax.xml.bind.JAXBElementcreateLocation(java.lang.String value)
Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}

        return new JAXBElement<String>(_Location_QNAME, String.class, null, value);
    
public MetadatacreateMetadata()
Create an instance of {@link Metadata }

        return new Metadata();
    
public MetadataReferencecreateMetadataReference()
Create an instance of {@link MetadataReference }

        return new MetadataReference();
    
public MetadataSectioncreateMetadataSection()
Create an instance of {@link MetadataSection }

        return new MetadataSection();