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 | |
9 | package org.jomc.model.bootstrap; |
10 | |
11 | import javax.annotation.Generated; |
12 | import javax.xml.bind.annotation.XmlAccessType; |
13 | import javax.xml.bind.annotation.XmlAccessorType; |
14 | import javax.xml.bind.annotation.XmlSeeAlso; |
15 | import 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 | * <complexType name="BootstrapObject"> |
27 | * <complexContent> |
28 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
29 | * </restriction> |
30 | * </complexContent> |
31 | * </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") |
43 | public 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 | } |