All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openehealth.ipf.commons.xml.svrl.SchematronOutput Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-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.01 at 10:44:03 PM CEST 
//


package org.openehealth.ipf.commons.xml.svrl;

import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElements;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://purl.oclc.org/dsdl/svrl}text" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://purl.oclc.org/dsdl/svrl}ns-prefix-in-attribute-values" maxOccurs="unbounded" minOccurs="0"/>
 *         <sequence maxOccurs="unbounded">
 *           <element ref="{http://purl.oclc.org/dsdl/svrl}active-pattern"/>
 *           <sequence maxOccurs="unbounded">
 *             <element ref="{http://purl.oclc.org/dsdl/svrl}fired-rule"/>
 *             <choice maxOccurs="unbounded" minOccurs="0">
 *               <element ref="{http://purl.oclc.org/dsdl/svrl}failed-assert"/>
 *               <element ref="{http://purl.oclc.org/dsdl/svrl}successful-report"/>
 *             </choice>
 *           </sequence>
 *         </sequence>
 *       </sequence>
 *       <attribute name="title" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *       <attribute name="phase" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
 *       <attribute name="schemaVersion" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "text", "nsPrefixInAttributeValues", "activePatternAndFiredRuleAndFailedAssert" }) @XmlRootElement(name = "schematron-output") public class SchematronOutput { protected List text; @XmlElement(name = "ns-prefix-in-attribute-values") protected List nsPrefixInAttributeValues; @XmlElements({ @XmlElement(name = "active-pattern", required = true, type = ActivePattern.class), @XmlElement(name = "fired-rule", required = true, type = FiredRule.class), @XmlElement(name = "failed-assert", required = true, type = FailedAssert.class), @XmlElement(name = "successful-report", required = true, type = SuccessfulReport.class) }) protected List activePatternAndFiredRuleAndFailedAssert; @XmlAttribute(name = "title") @XmlSchemaType(name = "anySimpleType") protected String title; @XmlAttribute(name = "phase") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String phase; @XmlAttribute(name = "schemaVersion") @XmlSchemaType(name = "anySimpleType") protected String schemaVersion; /** * Gets the value of the text property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the text property. * *

* For example, to add a new item, do as follows: *

     *    getText().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getText() { if (text == null) { text = new ArrayList<>(); } return this.text; } /** * Gets the value of the nsPrefixInAttributeValues property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the nsPrefixInAttributeValues property. * *

* For example, to add a new item, do as follows: *

     *    getNsPrefixInAttributeValues().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link NsPrefixInAttributeValues } * * */ public List getNsPrefixInAttributeValues() { if (nsPrefixInAttributeValues == null) { nsPrefixInAttributeValues = new ArrayList<>(); } return this.nsPrefixInAttributeValues; } /** * Gets the value of the activePatternAndFiredRuleAndFailedAssert property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the activePatternAndFiredRuleAndFailedAssert property. * *

* For example, to add a new item, do as follows: *

     *    getActivePatternAndFiredRuleAndFailedAssert().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ActivePattern } * {@link FiredRule } * {@link FailedAssert } * {@link SuccessfulReport } * * */ public List getActivePatternAndFiredRuleAndFailedAssert() { if (activePatternAndFiredRuleAndFailedAssert == null) { activePatternAndFiredRuleAndFailedAssert = new ArrayList<>(); } return this.activePatternAndFiredRuleAndFailedAssert; } /** * Gets the value of the title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the phase property. * * @return * possible object is * {@link String } * */ public String getPhase() { return phase; } /** * Sets the value of the phase property. * * @param value * allowed object is * {@link String } * */ public void setPhase(String value) { this.phase = value; } /** * Gets the value of the schemaVersion property. * * @return * possible object is * {@link String } * */ public String getSchemaVersion() { return schemaVersion; } /** * Sets the value of the schemaVersion property. * * @param value * allowed object is * {@link String } * */ public void setSchemaVersion(String value) { this.schemaVersion = value; } }