View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2015.05.01 at 10:44:03 PM CEST 
6   //
7   
8   
9   package org.openehealth.ipf.commons.xml.svrl;
10  
11  import javax.xml.bind.JAXBElement;
12  import javax.xml.bind.annotation.XmlElementDecl;
13  import javax.xml.bind.annotation.XmlRegistry;
14  import javax.xml.namespace.QName;
15  
16  
17  /**
18   * This object contains factory methods for each 
19   * Java content interface and Java element interface 
20   * generated in the org.openehealth.ipf.commons.xml.svrl package. 
21   * <p>An ObjectFactory allows you to programatically 
22   * construct new instances of the Java representation 
23   * for XML content. The Java representation of XML 
24   * content can consist of schema derived interfaces 
25   * and classes representing the binding of schema 
26   * type definitions, element declarations and model 
27   * groups.  Factory methods for each of these are 
28   * provided in this class.
29   * 
30   */
31  @XmlRegistry
32  public class ObjectFactory {
33  
34      private final static QName _Text_QNAME = new QName("http://purl.oclc.org/dsdl/svrl", "text");
35  
36      /**
37       * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openehealth.ipf.commons.xml.svrl
38       * 
39       */
40      public ObjectFactory() {
41      }
42  
43      /**
44       * Create an instance of {@link SuccessfulReport }
45       * 
46       */
47      public SuccessfulReport createSuccessfulReport() {
48          return new SuccessfulReport();
49      }
50  
51      /**
52       * Create an instance of {@link DiagnosticReference }
53       * 
54       */
55      public DiagnosticReference createDiagnosticReference() {
56          return new DiagnosticReference();
57      }
58  
59      /**
60       * Create an instance of {@link FailedAssert }
61       * 
62       */
63      public FailedAssert createFailedAssert() {
64          return new FailedAssert();
65      }
66  
67      /**
68       * Create an instance of {@link ActivePattern }
69       * 
70       */
71      public ActivePattern createActivePattern() {
72          return new ActivePattern();
73      }
74  
75      /**
76       * Create an instance of {@link SchematronOutput }
77       * 
78       */
79      public SchematronOutput createSchematronOutput() {
80          return new SchematronOutput();
81      }
82  
83      /**
84       * Create an instance of {@link NsPrefixInAttributeValues }
85       * 
86       */
87      public NsPrefixInAttributeValues createNsPrefixInAttributeValues() {
88          return new NsPrefixInAttributeValues();
89      }
90  
91      /**
92       * Create an instance of {@link FiredRule }
93       * 
94       */
95      public FiredRule createFiredRule() {
96          return new FiredRule();
97      }
98  
99      /**
100      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
101      * 
102      */
103     @XmlElementDecl(namespace = "http://purl.oclc.org/dsdl/svrl", name = "text")
104     public JAXBElement<String> createText(String value) {
105         return new JAXBElement<>(_Text_QNAME, String.class, null, value);
106     }
107 
108 }