com.helger.schematron.svrl.jaxb.RichText 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 java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.Nonnegative;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlMixed;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import com.helger.commons.annotation.CodingStyleguideUnaware;
import com.helger.commons.annotation.ReturnsMutableCopy;
import com.helger.commons.annotation.ReturnsMutableObject;
import com.helger.commons.equals.EqualsHelper;
import com.helger.commons.hashcode.HashCodeGenerator;
import com.helger.commons.lang.IExplicitlyCloneable;
import com.helger.commons.string.ToStringGenerator;
import org.w3c.dom.Element;
/**
* Java class for rich-text complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="rich-text">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice maxOccurs="unbounded" minOccurs="0">
* <group ref="{http://purl.oclc.org/dsdl/svrl}foreign"/>
* <element ref="{http://purl.oclc.org/dsdl/svrl}dir"/>
* <element ref="{http://purl.oclc.org/dsdl/svrl}span"/>
* <element ref="{http://purl.oclc.org/dsdl/svrl}emph"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
* This class was annotated by ph-jaxb22-plugin -Xph-annotate
* This class contains methods created by ph-jaxb22-plugin -Xph-equalshashcode
* This class contains methods created by ph-jaxb22-plugin -Xph-tostring
* This class contains methods created by ph-jaxb22-plugin -Xph-list-extension
* This class contains methods created by ph-jaxb22-plugin -Xph-cloneable2
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "rich-text", propOrder = {
"content"
})
@XmlSeeAlso({
Text.class
})
@CodingStyleguideUnaware
public class RichText implements Serializable, IExplicitlyCloneable
{
@XmlElementRefs({
@XmlElementRef(name = "dir", namespace = "http://purl.oclc.org/dsdl/svrl", type = Dir.class, required = false),
@XmlElementRef(name = "span", namespace = "http://purl.oclc.org/dsdl/svrl", type = Span.class, required = false),
@XmlElementRef(name = "emph", namespace = "http://purl.oclc.org/dsdl/svrl", type = Emph.class, required = false)
})
@XmlMixed
@XmlAnyElement
private List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy