EMMA Coverage Report (generated Tue Jun 29 17:59:02 CEST 2010)
[all classes][org.jomc.standalone.model]

COVERAGE SUMMARY FOR SOURCE FILE [ObjectFactory.java]

nameclass, %method, %block, %line, %
ObjectFactory.java0%   (0/1)0%   (0/16)0%   (0/130)0%   (0/23)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ObjectFactory0%   (0/1)0%   (0/16)0%   (0/130)0%   (0/23)
<static initializer> 0%   (0/1)0%   (0/43)0%   (0/7)
ObjectFactory (): void 0%   (0/1)0%   (0/3)0%   (0/2)
createException (ExceptionType): JAXBElement 0%   (0/1)0%   (0/8)0%   (0/1)
createExceptionType (): ExceptionType 0%   (0/1)0%   (0/4)0%   (0/1)
createExceptions (ExceptionsType): JAXBElement 0%   (0/1)0%   (0/8)0%   (0/1)
createExceptionsType (): ExceptionsType 0%   (0/1)0%   (0/4)0%   (0/1)
createMethod (MethodType): JAXBElement 0%   (0/1)0%   (0/8)0%   (0/1)
createMethodType (): MethodType 0%   (0/1)0%   (0/4)0%   (0/1)
createMethods (MethodsType): JAXBElement 0%   (0/1)0%   (0/8)0%   (0/1)
createMethodsType (): MethodsType 0%   (0/1)0%   (0/4)0%   (0/1)
createParameter (ParameterType): JAXBElement 0%   (0/1)0%   (0/8)0%   (0/1)
createParameterType (): ParameterType 0%   (0/1)0%   (0/4)0%   (0/1)
createParameters (ParametersType): JAXBElement 0%   (0/1)0%   (0/8)0%   (0/1)
createParametersType (): ParametersType 0%   (0/1)0%   (0/4)0%   (0/1)
createTransaction (TransactionType): JAXBElement 0%   (0/1)0%   (0/8)0%   (0/1)
createTransactionType (): TransactionType 0%   (0/1)0%   (0/4)0%   (0/1)

1//
2// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 
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: 2010.06.29 at 05:55:18 PM CEST 
6//
7 
8 
9package org.jomc.standalone.model;
10 
11import javax.xml.bind.JAXBElement;
12import javax.xml.bind.annotation.XmlElementDecl;
13import javax.xml.bind.annotation.XmlRegistry;
14import 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.jomc.standalone.model 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
32public class ObjectFactory {
33 
34    private final static QName _Method_QNAME = new QName("http://jomc.org/standalone/model", "method");
35    private final static QName _Transaction_QNAME = new QName("http://jomc.org/standalone/model", "transaction");
36    private final static QName _Methods_QNAME = new QName("http://jomc.org/standalone/model", "methods");
37    private final static QName _Exception_QNAME = new QName("http://jomc.org/standalone/model", "exception");
38    private final static QName _Parameters_QNAME = new QName("http://jomc.org/standalone/model", "parameters");
39    private final static QName _Exceptions_QNAME = new QName("http://jomc.org/standalone/model", "exceptions");
40    private final static QName _Parameter_QNAME = new QName("http://jomc.org/standalone/model", "parameter");
41 
42    /**
43     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.jomc.standalone.model
44     * 
45     */
46    public ObjectFactory() {
47    }
48 
49    /**
50     * Create an instance of {@link TransactionType }
51     * 
52     */
53    public TransactionType createTransactionType() {
54        return new TransactionType();
55    }
56 
57    /**
58     * Create an instance of {@link ExceptionType }
59     * 
60     */
61    public ExceptionType createExceptionType() {
62        return new ExceptionType();
63    }
64 
65    /**
66     * Create an instance of {@link MethodsType }
67     * 
68     */
69    public MethodsType createMethodsType() {
70        return new MethodsType();
71    }
72 
73    /**
74     * Create an instance of {@link ExceptionsType }
75     * 
76     */
77    public ExceptionsType createExceptionsType() {
78        return new ExceptionsType();
79    }
80 
81    /**
82     * Create an instance of {@link MethodType }
83     * 
84     */
85    public MethodType createMethodType() {
86        return new MethodType();
87    }
88 
89    /**
90     * Create an instance of {@link ParametersType }
91     * 
92     */
93    public ParametersType createParametersType() {
94        return new ParametersType();
95    }
96 
97    /**
98     * Create an instance of {@link ParameterType }
99     * 
100     */
101    public ParameterType createParameterType() {
102        return new ParameterType();
103    }
104 
105    /**
106     * Create an instance of {@link JAXBElement }{@code <}{@link MethodType }{@code >}}
107     * 
108     */
109    @XmlElementDecl(namespace = "http://jomc.org/standalone/model", name = "method")
110    public JAXBElement<MethodType> createMethod(MethodType value) {
111        return new JAXBElement<MethodType>(_Method_QNAME, MethodType.class, null, value);
112    }
113 
114    /**
115     * Create an instance of {@link JAXBElement }{@code <}{@link TransactionType }{@code >}}
116     * 
117     */
118    @XmlElementDecl(namespace = "http://jomc.org/standalone/model", name = "transaction")
119    public JAXBElement<TransactionType> createTransaction(TransactionType value) {
120        return new JAXBElement<TransactionType>(_Transaction_QNAME, TransactionType.class, null, value);
121    }
122 
123    /**
124     * Create an instance of {@link JAXBElement }{@code <}{@link MethodsType }{@code >}}
125     * 
126     */
127    @XmlElementDecl(namespace = "http://jomc.org/standalone/model", name = "methods")
128    public JAXBElement<MethodsType> createMethods(MethodsType value) {
129        return new JAXBElement<MethodsType>(_Methods_QNAME, MethodsType.class, null, value);
130    }
131 
132    /**
133     * Create an instance of {@link JAXBElement }{@code <}{@link ExceptionType }{@code >}}
134     * 
135     */
136    @XmlElementDecl(namespace = "http://jomc.org/standalone/model", name = "exception")
137    public JAXBElement<ExceptionType> createException(ExceptionType value) {
138        return new JAXBElement<ExceptionType>(_Exception_QNAME, ExceptionType.class, null, value);
139    }
140 
141    /**
142     * Create an instance of {@link JAXBElement }{@code <}{@link ParametersType }{@code >}}
143     * 
144     */
145    @XmlElementDecl(namespace = "http://jomc.org/standalone/model", name = "parameters")
146    public JAXBElement<ParametersType> createParameters(ParametersType value) {
147        return new JAXBElement<ParametersType>(_Parameters_QNAME, ParametersType.class, null, value);
148    }
149 
150    /**
151     * Create an instance of {@link JAXBElement }{@code <}{@link ExceptionsType }{@code >}}
152     * 
153     */
154    @XmlElementDecl(namespace = "http://jomc.org/standalone/model", name = "exceptions")
155    public JAXBElement<ExceptionsType> createExceptions(ExceptionsType value) {
156        return new JAXBElement<ExceptionsType>(_Exceptions_QNAME, ExceptionsType.class, null, value);
157    }
158 
159    /**
160     * Create an instance of {@link JAXBElement }{@code <}{@link ParameterType }{@code >}}
161     * 
162     */
163    @XmlElementDecl(namespace = "http://jomc.org/standalone/model", name = "parameter")
164    public JAXBElement<ParameterType> createParameter(ParameterType value) {
165        return new JAXBElement<ParameterType>(_Parameter_QNAME, ParameterType.class, null, value);
166    }
167 
168}

[all classes][org.jomc.standalone.model]
EMMA 2.0.5312 (C) Vladimir Roubtsov