// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.08.01 at 10:33:36 AM MST // package edu.asu.spring.quadriga.domain.impl.networks; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for termPartType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="termPartType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice maxOccurs="10" minOccurs="7"> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="creator" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> * <element name="creation_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="creation_place" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> * <element name="source_reference" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> * <element name="position" type="{http://www.w3.org/2001/XMLSchema}integer"/> * <element name="expression" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="normalization" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> * <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="formatted_pointer" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="internal_refId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </choice> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "termPartType") public class TermPartType { @XmlElementRefs({ @XmlElementRef(name = "normalization", namespace = "http://digitalhps.org/creationEvents-model", type = JAXBElement.class), @XmlElementRef(name = "creation_date", namespace = "http://digitalhps.org/creationEvents-model", type = JAXBElement.class), @XmlElementRef(name = "creation_place", namespace = "http://digitalhps.org/creationEvents-model", type = JAXBElement.class), @XmlElementRef(name = "id", namespace = "http://digitalhps.org/creationEvents-model", type = JAXBElement.class), @XmlElementRef(name = "internal_refId", namespace = "http://digitalhps.org/creationEvents-model", type = JAXBElement.class), @XmlElementRef(name = "source_reference", namespace = "http://digitalhps.org/creationEvents-model", type = JAXBElement.class), @XmlElementRef(name = "creator", namespace = "http://digitalhps.org/creationEvents-model", type = JAXBElement.class) }) protected List<JAXBElement<?>> idOrCreatorOrCreationDate; @XmlElement(name = "expression", namespace = "http://digitalhps.org/creationEvents-model", type = String.class) private String expression; @XmlElement(name = "position", namespace = "http://digitalhps.org/creationEvents-model", type = String.class) private String position; @XmlElement(name = "formatted_pointer", namespace = "http://digitalhps.org/creationEvents-model", type = String.class) private String formattedPointer; public String getFormattedPointer() { return formattedPointer; } public void setFormattedPointer(String formattedPointer) { this.formattedPointer = formattedPointer; } public String getFormat() { return format; } public void setFormat(String format) { this.format = format; } @XmlElement(name = "format", namespace = "http://digitalhps.org/creationEvents-model", type = String.class) private String format; /** * Gets the value of the idOrCreatorOrCreationDate property. * * <p> * 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 <CODE>set</CODE> method for the idOrCreatorOrCreationDate property. * * <p> * For example, to add a new item, do as follows: * <pre> * getIdOrCreatorOrCreationDate().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link XMLGregorianCalendar }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ public List<JAXBElement<?>> getIdOrCreatorOrCreationDate() { if (idOrCreatorOrCreationDate == null) { idOrCreatorOrCreationDate = new ArrayList<JAXBElement<?>>(); } return this.idOrCreatorOrCreationDate; } public String getExpression() { return expression; } public void setExpression(String expression) { this.expression = expression; } public String getPosition() { return position; } public void setPosition(String position) { this.position = position; } }