001    //
002    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 
003    // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004    // Any modifications to this file will be lost upon recompilation of the source schema. 
005    // Generated on: 2009.10.06 at 06:45:27 AM UTC 
006    //
007    
008    
009    package org.jomc.model.bootstrap;
010    
011    import javax.annotation.Generated;
012    import javax.xml.bind.annotation.XmlAccessType;
013    import javax.xml.bind.annotation.XmlAccessorType;
014    import javax.xml.bind.annotation.XmlSeeAlso;
015    import javax.xml.bind.annotation.XmlType;
016    
017    
018    /**
019     * Base bootstrap object.
020     * 
021     * 
022     * 
023     */
024    @XmlAccessorType(XmlAccessType.FIELD)
025    @XmlType(name = "BootstrapObject")
026    @XmlSeeAlso({
027        Schemas.class,
028        Schema.class
029    })
030    @Generated(value = "com.sun.tools.xjc.Driver", date = "2009-10-06T06:45:27+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-833")
031    public class BootstrapObject
032        implements Cloneable
033    {
034    
035    
036        /**
037         * Creates a new {@code BootstrapObject} instance.
038         * 
039         */
040        public BootstrapObject() {
041             // CC-XJC Version 1.0 Build 2009-09-18T15:48:40+0000
042            super();
043        }
044    
045        /**
046         * Creates a new {@code BootstrapObject} instance by deeply copying a given instance.
047         * 
048         * @param o
049         *     The instance to copy or {@code null}.
050         */
051        public BootstrapObject(final BootstrapObject o) {
052             // CC-XJC Version 1.0 Build 2009-09-18T15:48:40+0000
053            super();
054        }
055    
056        /**
057         * Creates and returns a deep copy of this object.
058         * 
059         * 
060         * @return
061         *     A deep copy of this object.
062         */
063        @Override
064        @Generated(value = "com.sun.tools.xjc.Driver", date = "2009-10-06T06:45:27+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-833")
065        public BootstrapObject clone() {
066             // CC-XJC Version 1.0 Build 2009-09-18T15:48:40+0000
067            return new BootstrapObject(this);
068        }
069    
070    }