All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
uk.gov.legislation.namespaces.legislation.Pnumber Maven / Gradle / Ivy
//
// 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 uk.co.tso.assets.namespace.error.ErrorType;
import javax.xml.bind.JAXBElement;
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 maxOccurs="unbounded" minOccurs="0">
* <element ref="{http://www.legislation.gov.uk/namespaces/legislation}Addition"/>
* <element ref="{http://www.legislation.gov.uk/namespaces/legislation}Repeal"/>
* <element ref="{http://www.legislation.gov.uk/namespaces/legislation}Substitution"/>
* <element ref="{http://www.legislation.gov.uk/namespaces/legislation}CommentaryRef"/>
* <element ref="{http://www.legislation.gov.uk/namespaces/legislation}Definition"/>
* <group ref="{http://www.tso.co.uk/assets/namespace/error}Errors"/>
* </choice>
* <attGroup ref="{http://www.legislation.gov.uk/namespaces/legislation}CommonAttributes"/>
* <attribute name="PuncBefore" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="PuncAfter" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"content"
})
@XmlRootElement(name = "Pnumber")
public class Pnumber {
@XmlElementRefs({
@XmlElementRef(name = "Addition", namespace = "http://www.legislation.gov.uk/namespaces/legislation", type = JAXBElement.class, required = false),
@XmlElementRef(name = "CommentaryRef", namespace = "http://www.legislation.gov.uk/namespaces/legislation", type = CommentaryRef.class, required = false),
@XmlElementRef(name = "Error", namespace = "http://www.tso.co.uk/assets/namespace/error", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Repeal", namespace = "http://www.legislation.gov.uk/namespaces/legislation", type = Repeal.class, required = false),
@XmlElementRef(name = "Substitution", namespace = "http://www.legislation.gov.uk/namespaces/legislation", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Warning", namespace = "http://www.tso.co.uk/assets/namespace/error", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Definition", namespace = "http://www.legislation.gov.uk/namespaces/legislation", type = Definition.class, required = false)
})
@XmlMixed
protected List content;
@XmlAttribute(name = "PuncBefore")
protected String puncBefore;
@XmlAttribute(name = "PuncAfter")
protected String puncAfter;
@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 content 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 content property.
*
*
* For example, to add a new item, do as follows:
*
* getContent().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link ChangeType }{@code >}
* {@link String }
* {@link CommentaryRef }
* {@link JAXBElement }{@code <}{@link ErrorType }{@code >}
* {@link Repeal }
* {@link JAXBElement }{@code <}{@link ChangeType }{@code >}
* {@link JAXBElement }{@code <}{@link ErrorType }{@code >}
* {@link Definition }
*
*
*/
public List getContent() {
if (content == null) {
content = new ArrayList<>();
}
return this.content;
}
/**
* Gets the value of the puncBefore property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPuncBefore() {
return puncBefore;
}
/**
* Sets the value of the puncBefore property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPuncBefore(String value) {
this.puncBefore = value;
}
/**
* Gets the value of the puncAfter property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPuncAfter() {
return puncAfter;
}
/**
* Sets the value of the puncAfter property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPuncAfter(String value) {
this.puncAfter = 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;
}
}