// // 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 convocType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="convocType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CV_ENTRY" type="{}cventryType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="CV_ID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="DESCRIPTION" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="EXT_REF" type="{http://www.w3.org/2001/XMLSchema}IDREF" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "convocType", propOrder = { "cventry" }) @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public class ConvocType { @XmlElement(name = "CV_ENTRY") @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") protected List<CventryType> cventry; @XmlAttribute(name = "CV_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 cvid; @XmlAttribute(name = "DESCRIPTION") @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") protected String description; @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; /** * Gets the value of the cventry 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 cventry property. * * <p> * For example, to add a new item, do as follows: * <pre> * getCVENTRY().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link CventryType } * * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2015-08-17T01:53:04+02:00", comments = "JAXB RI v2.2.11") public List<CventryType> getCVENTRY() { if (cventry == null) { cventry = new ArrayList<CventryType>(); } return this.cventry; } /** * Gets the value of the cvid 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 getCVID() { return cvid; } /** * Sets the value of the cvid 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 setCVID(String value) { this.cvid = value; } /** * Gets the value of the description 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 getDESCRIPTION() { return description; } /** * Sets the value of the description 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 setDESCRIPTION(String value) { this.description = 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; } }