All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.tools.plugin.ObjectFactory Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2011.12.13 at 02:52:15 PM EST 
//


package org.apache.cxf.tools.plugin;

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 org.apache.cxf.tools.plugin 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 _Plugin_QNAME = new QName("http://cxf.apache.org/tools/plugin", "plugin"); private final static QName _Generator_QNAME = new QName("http://cxf.apache.org/tools/plugin", "generator"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.cxf.tools.plugin * */ public ObjectFactory() { } /** * Create an instance of {@link Plugin } * */ public Plugin createPlugin() { return new Plugin(); } /** * Create an instance of {@link FrontEnd } * */ public FrontEnd createFrontEnd() { return new FrontEnd(); } /** * Create an instance of {@link Generator } * */ public Generator createGenerator() { return new Generator(); } /** * Create an instance of {@link DataBinding } * */ public DataBinding createDataBinding() { return new DataBinding(); } /** * Create an instance of {@link Builder } * */ public Builder createBuilder() { return new Builder(); } /** * Create an instance of {@link Processor } * */ public Processor createProcessor() { return new Processor(); } /** * Create an instance of {@link Container } * */ public Container createContainer() { return new Container(); } /** * Create an instance of {@link Generators } * */ public Generators createGenerators() { return new Generators(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Plugin }{@code >}} * */ @XmlElementDecl(namespace = "http://cxf.apache.org/tools/plugin", name = "plugin") public JAXBElement createPlugin(Plugin value) { return new JAXBElement(_Plugin_QNAME, Plugin.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Generator }{@code >}} * */ @XmlElementDecl(namespace = "http://cxf.apache.org/tools/plugin", name = "generator") public JAXBElement createGenerator(Generator value) { return new JAXBElement(_Generator_QNAME, Generator.class, null, value); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy