EMMA Coverage Report (generated Tue Jan 19 17:53:40 UTC 2010)
[all classes][org.jomc.model.bootstrap]

COVERAGE SUMMARY FOR SOURCE FILE [BootstrapObject.java]

nameclass, %method, %block, %line, %
BootstrapObject.java100% (1/1)33%  (1/3)17%  (3/18)29%  (2/7)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class BootstrapObject100% (1/1)33%  (1/3)17%  (3/18)29%  (2/7)
BootstrapObject (BootstrapObject): void 0%   (0/1)0%   (0/10)0%   (0/4)
clone (): BootstrapObject 0%   (0/1)0%   (0/5)0%   (0/1)
BootstrapObject (): void 100% (1/1)100% (3/3)100% (2/2)

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.01.19 at 05:54:28 PM UTC 
6//
7 
8 
9package org.jomc.model.bootstrap;
10 
11import javax.annotation.Generated;
12import javax.xml.bind.annotation.XmlAccessType;
13import javax.xml.bind.annotation.XmlAccessorType;
14import javax.xml.bind.annotation.XmlSeeAlso;
15import javax.xml.bind.annotation.XmlType;
16 
17 
18/**
19 * Base bootstrap object.
20 * 
21 * <p>Java class for BootstrapObject complex type.
22 * 
23 * <p>The following schema fragment specifies the expected content contained within this class.
24 * 
25 * <pre>
26 * &lt;complexType name="BootstrapObject">
27 *   &lt;complexContent>
28 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29 *     &lt;/restriction>
30 *   &lt;/complexContent>
31 * &lt;/complexType>
32 * </pre>
33 * 
34 * 
35 */
36@XmlAccessorType(XmlAccessType.FIELD)
37@XmlType(name = "BootstrapObject")
38@XmlSeeAlso({
39    Schemas.class,
40    Schema.class
41})
42@Generated(value = "com.sun.tools.xjc.Driver", date = "2010-01-19T05:54:28+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-833")
43public class BootstrapObject implements Cloneable
44{
45 
46 
47    /**
48     * Creates a new {@code BootstrapObject} instance.
49     * 
50     */
51    public BootstrapObject() {
52        // CC-XJC Version 1.2 Build 2009-11-15T21:50:02+0000
53        super();
54    }
55 
56    /**
57     * Creates a new {@code BootstrapObject} instance by deeply copying a given {@code BootstrapObject} instance.
58     * 
59     * 
60     * @param o
61     *     The instance to copy.
62     * @throws NullPointerException
63     *     if {@code o} is {@code null}.
64     */
65    public BootstrapObject(final BootstrapObject o) {
66        // CC-XJC Version 1.2 Build 2009-11-15T21:50:02+0000
67        super();
68        if (o == null) {
69            throw new NullPointerException("Cannot create a copy of 'BootstrapObject' from 'null'.");
70        }
71    }
72 
73    /**
74     * Creates and returns a deep copy of this object.
75     * 
76     * 
77     * @return
78     *     A deep copy of this object.
79     */
80    @Override
81    @Generated(value = "com.sun.tools.xjc.Driver", date = "2010-01-19T05:54:28+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-833")
82    public BootstrapObject clone() {
83        // CC-XJC Version 1.2 Build 2009-11-15T21:50:02+0000
84        return new BootstrapObject(this);
85    }
86 
87}

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