// // 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 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.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for lingType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="lingType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="LINGUISTIC_TYPE_ID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="TIME_ALIGNABLE" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * <attribute name="CONSTRAINTS" type="{http://www.w3.org/2001/XMLSchema}IDREF" /> * <attribute name="GRAPHIC_REFERENCES" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * <attribute name="CONTROLLED_VOCABULARY_REF" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="EXT_REF" type="{http://www.w3.org/2001/XMLSchema}IDREF" /> * <attribute name="LEXICON_REF" type="{http://www.w3.org/2001/XMLSchema}IDREF" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "lingType") @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public class LingType { @XmlAttribute(name = "LINGUISTIC_TYPE_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 linguistictypeid; @XmlAttribute(name = "TIME_ALIGNABLE") @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") protected Boolean timealignable; @XmlAttribute(name = "CONSTRAINTS") @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 constraints; @XmlAttribute(name = "GRAPHIC_REFERENCES") @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") protected Boolean graphicreferences; @XmlAttribute(name = "CONTROLLED_VOCABULARY_REF") @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") protected String controlledvocabularyref; @XmlAttribute(name = "EXT_REF") @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 extref; @XmlAttribute(name = "LEXICON_REF") @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 lexiconref; /** * Gets the value of the linguistictypeid 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 getLINGUISTICTYPEID() { return linguistictypeid; } /** * Sets the value of the linguistictypeid 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 setLINGUISTICTYPEID(String value) { this.linguistictypeid = value; } /** * Gets the value of the timealignable property. * * @return * possible object is * {@link Boolean } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public Boolean isTIMEALIGNABLE() { return timealignable; } /** * Sets the value of the timealignable property. * * @param value * allowed object is * {@link Boolean } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public void setTIMEALIGNABLE(Boolean value) { this.timealignable = value; } /** * Gets the value of the constraints 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 getCONSTRAINTS() { return constraints; } /** * Sets the value of the constraints 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 setCONSTRAINTS(Object value) { this.constraints = value; } /** * Gets the value of the graphicreferences property. * * @return * possible object is * {@link Boolean } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public Boolean isGRAPHICREFERENCES() { return graphicreferences; } /** * Sets the value of the graphicreferences property. * * @param value * allowed object is * {@link Boolean } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public void setGRAPHICREFERENCES(Boolean value) { this.graphicreferences = value; } /** * Gets the value of the controlledvocabularyref 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 getCONTROLLEDVOCABULARYREF() { return controlledvocabularyref; } /** * Sets the value of the controlledvocabularyref 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 setCONTROLLEDVOCABULARYREF(String value) { this.controlledvocabularyref = value; } /** * Gets the value of the extref 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 getEXTREF() { return extref; } /** * Sets the value of the extref 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 setEXTREF(Object value) { this.extref = value; } /** * Gets the value of the lexiconref 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 getLEXICONREF() { return lexiconref; } /** * Sets the value of the lexiconref 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 setLEXICONREF(Object value) { this.lexiconref = value; } }