org.jomc.tools.model.ObjectFactory Maven / Gradle / Ivy
Show all versions of jomc-tools Show documentation
//
// 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: 2015.05.31 at 05:43:54 PM CEST
//
package org.jomc.tools.model;
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.jomc.tools.model 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 _SourceSections_QNAME = new QName("http://jomc.org/tools/model", "source-sections");
private final static QName _SourceSection_QNAME = new QName("http://jomc.org/tools/model", "source-section");
private final static QName _SourceFile_QNAME = new QName("http://jomc.org/tools/model", "source-file");
private final static QName _SourceFiles_QNAME = new QName("http://jomc.org/tools/model", "source-files");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.jomc.tools.model
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link SourceSectionsType }
*
*/
public SourceSectionsType createSourceSectionsType() {
return new SourceSectionsType();
}
/**
* Create an instance of {@link TemplateParameterType }
*
*/
public TemplateParameterType createTemplateParameterType() {
return new TemplateParameterType();
}
/**
* Create an instance of {@link SourceSectionType }
*
*/
public SourceSectionType createSourceSectionType() {
return new SourceSectionType();
}
/**
* Create an instance of {@link SourceFilesType }
*
*/
public SourceFilesType createSourceFilesType() {
return new SourceFilesType();
}
/**
* Create an instance of {@link SourceFileType }
*
*/
public SourceFileType createSourceFileType() {
return new SourceFileType();
}
/**
* Create an instance of {@link ToolsType }
*
*/
public ToolsType createToolsType() {
return new ToolsType();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SourceSectionsType }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://jomc.org/tools/model", name = "source-sections")
public JAXBElement createSourceSections(SourceSectionsType value) {
return new JAXBElement(_SourceSections_QNAME, SourceSectionsType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SourceSectionType }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://jomc.org/tools/model", name = "source-section")
public JAXBElement createSourceSection(SourceSectionType value) {
return new JAXBElement(_SourceSection_QNAME, SourceSectionType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SourceFileType }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://jomc.org/tools/model", name = "source-file")
public JAXBElement createSourceFile(SourceFileType value) {
return new JAXBElement(_SourceFile_QNAME, SourceFileType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SourceFilesType }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://jomc.org/tools/model", name = "source-files")
public JAXBElement createSourceFiles(SourceFilesType value) {
return new JAXBElement(_SourceFiles_QNAME, SourceFilesType.class, null, value);
}
}