// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 // 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: 2015.08.17 at 01:53:04 PM CEST // package com.github.shell88.bddvideoannotator.annotationfile.exporter.eaf; import java.util.ArrayList; import java.util.List; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for tierType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="tierType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ANNOTATION" type="{}annotationType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="TIER_ID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="PARTICIPANT" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="ANNOTATOR" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="LINGUISTIC_TYPE_REF" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="DEFAULT_LOCALE" type="{http://www.w3.org/2001/XMLSchema}IDREF" /> * <attribute name="PARENT_REF" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tierType", propOrder = { "annotation" }) @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public class TierType { @XmlElement(name = "ANNOTATION") @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") protected List<AnnotationType> annotation; @XmlAttribute(name = "TIER_ID", required = true) @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") protected String tierid; @XmlAttribute(name = "PARTICIPANT") @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") protected String participant; @XmlAttribute(name = "ANNOTATOR") @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") protected String annotator; @XmlAttribute(name = "LINGUISTIC_TYPE_REF", required = true) @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") protected String linguistictyperef; @XmlAttribute(name = "DEFAULT_LOCALE") @XmlIDREF @XmlSchemaType(name = "IDREF") @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") protected Object defaultlocale; @XmlAttribute(name = "PARENT_REF") @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") protected String parentref; /** * Gets the value of the annotation 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 annotation property. * * <p> * For example, to add a new item, do as follows: * <pre> * getANNOTATION().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link AnnotationType } * * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public List<AnnotationType> getANNOTATION() { if (annotation == null) { annotation = new ArrayList<AnnotationType>(); } return this.annotation; } /** * Gets the value of the tierid property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public String getTIERID() { return tierid; } /** * Sets the value of the tierid property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public void setTIERID(String value) { this.tierid = value; } /** * Gets the value of the participant property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public String getPARTICIPANT() { return participant; } /** * Sets the value of the participant property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public void setPARTICIPANT(String value) { this.participant = value; } /** * Gets the value of the annotator property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public String getANNOTATOR() { return annotator; } /** * Sets the value of the annotator property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public void setANNOTATOR(String value) { this.annotator = value; } /** * Gets the value of the linguistictyperef property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public String getLINGUISTICTYPEREF() { return linguistictyperef; } /** * Sets the value of the linguistictyperef property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public void setLINGUISTICTYPEREF(String value) { this.linguistictyperef = value; } /** * Gets the value of the defaultlocale property. * * @return * possible object is * {@link Object } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public Object getDEFAULTLOCALE() { return defaultlocale; } /** * Sets the value of the defaultlocale property. * * @param value * allowed object is * {@link Object } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public void setDEFAULTLOCALE(Object value) { this.defaultlocale = value; } /** * Gets the value of the parentref property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public String getPARENTREF() { return parentref; } /** * Sets the value of the parentref property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public void setPARENTREF(String value) { this.parentref = value; } }