EMMA Coverage Report (generated Wed Feb 03 01:24:19 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.02.03 at 01:25:12 AM 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    Service.class,
40    Schemas.class,
41    Schema.class,
42    Services.class
43})
44@Generated(value = "com.sun.tools.xjc.Driver", date = "2010-02-03T01:25:12+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-833")
45public class BootstrapObject implements Cloneable
46{
47 
48 
49    /**
50     * Creates a new {@code BootstrapObject} instance.
51     * 
52     */
53    public BootstrapObject() {
54        // CC-XJC Version 1.2 Build 2009-11-15T21:50:02+0000
55        super();
56    }
57 
58    /**
59     * Creates a new {@code BootstrapObject} instance by deeply copying a given {@code BootstrapObject} instance.
60     * 
61     * 
62     * @param o
63     *     The instance to copy.
64     * @throws NullPointerException
65     *     if {@code o} is {@code null}.
66     */
67    public BootstrapObject(final BootstrapObject o) {
68        // CC-XJC Version 1.2 Build 2009-11-15T21:50:02+0000
69        super();
70        if (o == null) {
71            throw new NullPointerException("Cannot create a copy of 'BootstrapObject' from 'null'.");
72        }
73    }
74 
75    /**
76     * Creates and returns a deep copy of this object.
77     * 
78     * 
79     * @return
80     *     A deep copy of this object.
81     */
82    @Override
83    @Generated(value = "com.sun.tools.xjc.Driver", date = "2010-02-03T01:25:12+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-833")
84    public BootstrapObject clone() {
85        // CC-XJC Version 1.2 Build 2009-11-15T21:50:02+0000
86        return new BootstrapObject(this);
87    }
88 
89}

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