com.helger.schematron.svrl.jaxb.ObjectFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-schematron Show documentation
Show all versions of ph-schematron Show documentation
Library for validating XML documents with Schematron
package com.helger.schematron.svrl.jaxb;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
import com.helger.commons.annotation.CodingStyleguideUnaware;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the com.helger.schematron.svrl.jaxb 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.
This class was annotated by ph-jaxb22-plugin -Xph-annotate
*
*
*/
@XmlRegistry
@CodingStyleguideUnaware
public class ObjectFactory {
public final static QName _SchematronOutput_QNAME = new QName("http://purl.oclc.org/dsdl/svrl", "schematron-output");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.helger.schematron.svrl.jaxb
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link SchematronOutputType }
*
* @return
* The created SchematronOutputType object and never null
.
*/
@Nonnull
public SchematronOutputType createSchematronOutputType() {
return new SchematronOutputType();
}
/**
* Create an instance of {@link NsPrefixInAttributeValues }
*
* @return
* The created NsPrefixInAttributeValues object and never null
.
*/
@Nonnull
public NsPrefixInAttributeValues createNsPrefixInAttributeValues() {
return new NsPrefixInAttributeValues();
}
/**
* Create an instance of {@link ActivePattern }
*
* @return
* The created ActivePattern object and never null
.
*/
@Nonnull
public ActivePattern createActivePattern() {
return new ActivePattern();
}
/**
* Create an instance of {@link Text }
*
* @return
* The created Text object and never null
.
*/
@Nonnull
public Text createText() {
return new Text();
}
/**
* Create an instance of {@link RichText }
*
* @return
* The created RichText object and never null
.
*/
@Nonnull
public RichText createRichText() {
return new RichText();
}
/**
* Create an instance of {@link Dir }
*
* @return
* The created Dir object and never null
.
*/
@Nonnull
public Dir createDir() {
return new Dir();
}
/**
* Create an instance of {@link Span }
*
* @return
* The created Span object and never null
.
*/
@Nonnull
public Span createSpan() {
return new Span();
}
/**
* Create an instance of {@link Emph }
*
* @return
* The created Emph object and never null
.
*/
@Nonnull
public Emph createEmph() {
return new Emph();
}
/**
* Create an instance of {@link FiredRule }
*
* @return
* The created FiredRule object and never null
.
*/
@Nonnull
public FiredRule createFiredRule() {
return new FiredRule();
}
/**
* Create an instance of {@link DiagnosticReference }
*
* @return
* The created DiagnosticReference object and never null
.
*/
@Nonnull
public DiagnosticReference createDiagnosticReference() {
return new DiagnosticReference();
}
/**
* Create an instance of {@link FailedAssert }
*
* @return
* The created FailedAssert object and never null
.
*/
@Nonnull
public FailedAssert createFailedAssert() {
return new FailedAssert();
}
/**
* Create an instance of {@link PropertyReference }
*
* @return
* The created PropertyReference object and never null
.
*/
@Nonnull
public PropertyReference createPropertyReference() {
return new PropertyReference();
}
/**
* Create an instance of {@link SuccessfulReport }
*
* @return
* The created SuccessfulReport object and never null
.
*/
@Nonnull
public SuccessfulReport createSuccessfulReport() {
return new SuccessfulReport();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SchematronOutputType }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link SchematronOutputType }{@code >} The created JAXBElement and never null
.
*/
@XmlElementDecl(namespace = "http://purl.oclc.org/dsdl/svrl", name = "schematron-output")
@Nonnull
public JAXBElement createSchematronOutput(
@Nullable
final SchematronOutputType value) {
return new JAXBElement(_SchematronOutput_QNAME, SchematronOutputType.class, null, value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy