All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.gov.legislation.namespaces.legislation.Primary Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.08.07 at 06:17:52 PM CEST 
//


package uk.gov.legislation.namespaces.legislation;

import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import java.util.ArrayList;
import java.util.List;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <sequence>
 *           <element ref="{http://www.legislation.gov.uk/namespaces/legislation}PrimaryPrelims" minOccurs="0"/>
 *           <element ref="{http://www.legislation.gov.uk/namespaces/legislation}Body" minOccurs="0"/>
 *           <element ref="{http://www.legislation.gov.uk/namespaces/legislation}Appendix" maxOccurs="unbounded" minOccurs="0"/>
 *           <element ref="{http://www.legislation.gov.uk/namespaces/legislation}Schedules" minOccurs="0"/>
 *           <element ref="{http://www.legislation.gov.uk/namespaces/legislation}ExplanatoryNotes" minOccurs="0"/>
 *         </sequence>
 *         <element ref="{http://www.legislation.gov.uk/namespaces/legislation}Include" maxOccurs="unbounded"/>
 *       </choice>
 *       <attGroup ref="{http://www.legislation.gov.uk/namespaces/legislation}CommonAttributes"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "includes", "primaryPrelims", "body", "appendixes", "schedules", "explanatoryNotes" }) @XmlRootElement(name = "Primary") public class Primary { @XmlElement(name = "Include") protected List includes; @XmlElement(name = "PrimaryPrelims") protected PrimaryPrelims primaryPrelims; @XmlElement(name = "Body") protected Body body; @XmlElement(name = "Appendix") protected List appendixes; @XmlElement(name = "Schedules") protected Schedules schedules; @XmlElement(name = "ExplanatoryNotes") protected ExplanatoryNotes explanatoryNotes; @XmlAttribute(name = "id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String id; @XmlAttribute(name = "lang", namespace = "http://www.w3.org/XML/1998/namespace") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "language") protected String lang; @XmlAttribute(name = "space", namespace = "http://www.w3.org/XML/1998/namespace") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String space; @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace") @XmlSchemaType(name = "anyURI") protected String base; @XmlAttribute(name = "AltVersionRefs") @XmlIDREF @XmlSchemaType(name = "IDREFS") protected List altVersionRefs; /** * Gets the value of the includes property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the includes property. * *

* For example, to add a new item, do as follows: *

     *    getIncludes().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Include } * * */ public List getIncludes() { if (includes == null) { includes = new ArrayList<>(); } return this.includes; } /** * Gets the value of the primaryPrelims property. * * @return * possible object is * {@link PrimaryPrelims } * */ public PrimaryPrelims getPrimaryPrelims() { return primaryPrelims; } /** * Sets the value of the primaryPrelims property. * * @param value * allowed object is * {@link PrimaryPrelims } * */ public void setPrimaryPrelims(PrimaryPrelims value) { this.primaryPrelims = value; } /** * Gets the value of the body property. * * @return * possible object is * {@link Body } * */ public Body getBody() { return body; } /** * Sets the value of the body property. * * @param value * allowed object is * {@link Body } * */ public void setBody(Body value) { this.body = value; } /** * Gets the value of the appendixes property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the appendixes property. * *

* For example, to add a new item, do as follows: *

     *    getAppendixes().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Appendix } * * */ public List getAppendixes() { if (appendixes == null) { appendixes = new ArrayList<>(); } return this.appendixes; } /** * Gets the value of the schedules property. * * @return * possible object is * {@link Schedules } * */ public Schedules getSchedules() { return schedules; } /** * Sets the value of the schedules property. * * @param value * allowed object is * {@link Schedules } * */ public void setSchedules(Schedules value) { this.schedules = value; } /** * Gets the value of the explanatoryNotes property. * * @return * possible object is * {@link ExplanatoryNotes } * */ public ExplanatoryNotes getExplanatoryNotes() { return explanatoryNotes; } /** * Sets the value of the explanatoryNotes property. * * @param value * allowed object is * {@link ExplanatoryNotes } * */ public void setExplanatoryNotes(ExplanatoryNotes value) { this.explanatoryNotes = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the lang property. * * @return * possible object is * {@link String } * */ public String getLang() { return lang; } /** * Sets the value of the lang property. * * @param value * allowed object is * {@link String } * */ public void setLang(String value) { this.lang = value; } /** * Gets the value of the space property. * * @return * possible object is * {@link String } * */ public String getSpace() { return space; } /** * Sets the value of the space property. * * @param value * allowed object is * {@link String } * */ public void setSpace(String value) { this.space = value; } /** * Gets the value of the base property. * * @return * possible object is * {@link String } * */ public String getBase() { return base; } /** * Sets the value of the base property. * * @param value * allowed object is * {@link String } * */ public void setBase(String value) { this.base = value; } /** * Gets the value of the altVersionRefs property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the altVersionRefs property. * *

* For example, to add a new item, do as follows: *

     *    getAltVersionRefs().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List getAltVersionRefs() { if (altVersionRefs == null) { altVersionRefs = new ArrayList<>(); } return this.altVersionRefs; } }