001// 002// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 003// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 004// Any modifications to this file will be lost upon recompilation of the source schema. 005// Generated on: 2017.04.15 at 10:50:52 PM IST 006// 007 008 009package com.thed.zblast.parser.jaxb.junit; 010 011import javax.xml.bind.JAXBElement; 012import javax.xml.bind.annotation.XmlElementDecl; 013import javax.xml.bind.annotation.XmlRegistry; 014import javax.xml.namespace.QName; 015 016 017/** 018 * This object contains factory methods for each 019 * Java content interface and Java element interface 020 * generated in the com.then.junit package. 021 * <p>An ObjectFactory allows you to programatically 022 * construct new instances of the Java representation 023 * for XML content. The Java representation of XML 024 * content can consist of schema derived interfaces 025 * and classes representing the binding of schema 026 * type definitions, element declarations and model 027 * groups. Factory methods for each of these are 028 * provided in this class. 029 * 030 */ 031@XmlRegistry 032public class ObjectFactory { 033 034 private final static QName _SystemOut_QNAME = new QName("", "system-out"); 035 private final static QName _Skipped_QNAME = new QName("", "skipped"); 036 private final static QName _SystemErr_QNAME = new QName("", "system-err"); 037 038 /** 039 * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.then.junit 040 * 041 */ 042 public ObjectFactory() { 043 } 044 045 /** 046 * Create an instance of {@link Failure } 047 * 048 */ 049 public Failure createFailure() { 050 return new Failure(); 051 } 052 053 /** 054 * Create an instance of {@link Testsuites } 055 * 056 */ 057 public Testsuites createTestsuites() { 058 return new Testsuites(); 059 } 060 061 /** 062 * Create an instance of {@link Testsuite } 063 * 064 */ 065 public Testsuite createTestsuite() { 066 return new Testsuite(); 067 } 068 069 /** 070 * Create an instance of {@link Properties } 071 * 072 */ 073 public Properties createProperties() { 074 return new Properties(); 075 } 076 077 /** 078 * Create an instance of {@link Property } 079 * 080 */ 081 public Property createProperty() { 082 return new Property(); 083 } 084 085 /** 086 * Create an instance of {@link Testcase } 087 * 088 */ 089 public Testcase createTestcase() { 090 return new Testcase(); 091 } 092 093 /** 094 * Create an instance of {@link Error } 095 * 096 */ 097 public Error createError() { 098 return new Error(); 099 } 100 101 /** 102 * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} 103 * 104 */ 105 @XmlElementDecl(namespace = "", name = "system-out") 106 public JAXBElement<String> createSystemOut(String value) { 107 return new JAXBElement<String>(_SystemOut_QNAME, String.class, null, value); 108 } 109 110 /** 111 * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} 112 * 113 */ 114 @XmlElementDecl(namespace = "", name = "skipped") 115 public JAXBElement<String> createSkipped(String value) { 116 return new JAXBElement<String>(_Skipped_QNAME, String.class, null, value); 117 } 118 119 /** 120 * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} 121 * 122 */ 123 @XmlElementDecl(namespace = "", name = "system-err") 124 public JAXBElement<String> createSystemErr(String value) { 125 return new JAXBElement<String>(_SystemErr_QNAME, String.class, null, value); 126 } 127 128}