
io.inkstand.schemas.jcr_import.ObjectFactory Maven / Gradle / Ivy
Show all versions of scribble-jcr 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: 2016.02.24 at 08:50:49 PM UTC
//
package io.inkstand.schemas.jcr_import;
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 io.inkstand.schemas.jcr_import 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 _RootNode_QNAME = new QName("http://inkstand.io/schemas/jcr-import", "rootNode");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: io.inkstand.schemas.jcr_import
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link PropertyDescriptor }
*
*/
public PropertyDescriptor createPropertyDescriptor() {
return new PropertyDescriptor();
}
/**
* Create an instance of {@link MixinDescriptor }
*
*/
public MixinDescriptor createMixinDescriptor() {
return new MixinDescriptor();
}
/**
* Create an instance of {@link NodeDescriptor }
*
*/
public NodeDescriptor createNodeDescriptor() {
return new NodeDescriptor();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link NodeDescriptor }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://inkstand.io/schemas/jcr-import", name = "rootNode")
public JAXBElement createRootNode(NodeDescriptor value) {
return new JAXBElement(_RootNode_QNAME, NodeDescriptor.class, null, value);
}
}