ObjectFactory.java
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.5
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package org.apache.cxf.tools.plugin;
import javax.xml.namespace.QName;
import jakarta.xml.bind.JAXBElement;
import jakarta.xml.bind.annotation.XmlElementDecl;
import jakarta.xml.bind.annotation.XmlRegistry;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the org.apache.cxf.tools.plugin package.
* <p>An ObjectFactory allows you to programmatically
* 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 static final QName _Generator_QNAME = new QName("http://cxf.apache.org/tools/plugin", "generator");
private static final QName _Plugin_QNAME = new QName("http://cxf.apache.org/tools/plugin", "plugin");
/**
* 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 Generator }
*
* @return
* the new instance of {@link Generator }
*/
public Generator createGenerator() {
return new Generator();
}
/**
* Create an instance of {@link Plugin }
*
* @return
* the new instance of {@link Plugin }
*/
public Plugin createPlugin() {
return new Plugin();
}
/**
* Create an instance of {@link DataBinding }
*
* @return
* the new instance of {@link DataBinding }
*/
public DataBinding createDataBinding() {
return new DataBinding();
}
/**
* Create an instance of {@link FrontEnd }
*
* @return
* the new instance of {@link FrontEnd }
*/
public FrontEnd createFrontEnd() {
return new FrontEnd();
}
/**
* Create an instance of {@link Processor }
*
* @return
* the new instance of {@link Processor }
*/
public Processor createProcessor() {
return new Processor();
}
/**
* Create an instance of {@link Builder }
*
* @return
* the new instance of {@link Builder }
*/
public Builder createBuilder() {
return new Builder();
}
/**
* Create an instance of {@link Container }
*
* @return
* the new instance of {@link Container }
*/
public Container createContainer() {
return new Container();
}
/**
* Create an instance of {@link Generators }
*
* @return
* the new instance of {@link Generators }
*/
public Generators createGenerators() {
return new Generators();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Generator }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link Generator }{@code >}
*/
@XmlElementDecl(namespace = "http://cxf.apache.org/tools/plugin", name = "generator")
public JAXBElement<Generator> createGenerator(Generator value) {
return new JAXBElement<>(_Generator_QNAME, Generator.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Plugin }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link Plugin }{@code >}
*/
@XmlElementDecl(namespace = "http://cxf.apache.org/tools/plugin", name = "plugin")
public JAXBElement<Plugin> createPlugin(Plugin value) {
return new JAXBElement<>(_Plugin_QNAME, Plugin.class, null, value);
}
}