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 | |
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 | 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") |
45 | public 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 | } |