org.opendope.conditions.ObjectFactory Maven / Gradle / Ivy
Show all versions of docx4j Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2012.09.27 at 07:26:00 PM EST
//
package org.opendope.conditions;
import javax.xml.bind.annotation.XmlRegistry;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the org.opendope.conditions 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 {
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.opendope.conditions
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link Not }
*
*/
public Not createNot() {
return new Not();
}
/**
* Create an instance of {@link Xpathref }
*
*/
public Xpathref createXpathref() {
return new Xpathref();
}
/**
* Create an instance of {@link And }
*
*/
public And createAnd() {
return new And();
}
/**
* Create an instance of {@link Or }
*
*/
public Or createOr() {
return new Or();
}
/**
* Create an instance of {@link Conditionref }
*
*/
public Conditionref createConditionref() {
return new Conditionref();
}
/**
* Create an instance of {@link Conditions }
*
*/
public Conditions createConditions() {
return new Conditions();
}
/**
* Create an instance of {@link Condition }
*
*/
public Condition createCondition() {
return new Condition();
}
}