// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-520 // 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: 2012.12.20 at 05:04:41 PM JST // package gen.core.tmx14; import java.util.ArrayList; import java.util.List; 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.XmlElements; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <choice maxOccurs="unbounded" minOccurs="0"> * <element ref="{}note"/> * <element ref="{}prop"/> * </choice> * <element ref="{}seg"/> * </sequence> * <attribute ref="{http://www.w3.org/XML/1998/namespace}lang use="required""/> * <attribute name="o-encoding" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="datatype" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="usagecount" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="lastusagedate" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="creationtool" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="creationtoolversion" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="creationdate" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="creationid" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="changedate" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="o-tmf" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="changeid" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="lang" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "noteOrProp", "seg" }) @XmlRootElement(name = "tuv") public class Tuv { @XmlElements({ @XmlElement(name = "note", type = Note.class), @XmlElement(name = "prop", type = Prop.class) }) protected List<Object> noteOrProp; @XmlElement(required = true) protected Seg seg; @XmlAttribute(name = "lang", namespace = "http://www.w3.org/XML/1998/namespace", required = true) protected String xmlLang; @XmlAttribute(name = "o-encoding") @XmlSchemaType(name = "anySimpleType") protected String oEncoding; @XmlAttribute @XmlSchemaType(name = "anySimpleType") protected String datatype; @XmlAttribute @XmlSchemaType(name = "anySimpleType") protected String usagecount; @XmlAttribute @XmlSchemaType(name = "anySimpleType") protected String lastusagedate; @XmlAttribute @XmlSchemaType(name = "anySimpleType") protected String creationtool; @XmlAttribute @XmlSchemaType(name = "anySimpleType") protected String creationtoolversion; @XmlAttribute @XmlSchemaType(name = "anySimpleType") protected String creationdate; @XmlAttribute @XmlSchemaType(name = "anySimpleType") protected String creationid; @XmlAttribute @XmlSchemaType(name = "anySimpleType") protected String changedate; @XmlAttribute(name = "o-tmf") @XmlSchemaType(name = "anySimpleType") protected String oTmf; @XmlAttribute @XmlSchemaType(name = "anySimpleType") protected String changeid; @XmlAttribute @XmlSchemaType(name = "anySimpleType") protected String lang; /** * Gets the value of the noteOrProp 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 noteOrProp property. * * <p> * For example, to add a new item, do as follows: * <pre> * getNoteOrProp().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Note } * {@link Prop } * * */ public List<Object> getNoteOrProp() { if (noteOrProp == null) { noteOrProp = new ArrayList<Object>(); } return this.noteOrProp; } /** * Gets the value of the seg property. * * @return * possible object is * {@link Seg } * */ public Seg getSeg() { return seg; } /** * Sets the value of the seg property. * * @param value * allowed object is * {@link Seg } * */ public void setSeg(Seg value) { this.seg = value; } /** * Gets the value of the xmlLang property. * * @return * possible object is * {@link String } * */ public String getXmlLang() { return xmlLang; } /** * Sets the value of the xmlLang property. * * @param value * allowed object is * {@link String } * */ public void setXmlLang(String value) { this.xmlLang = value; } /** * Gets the value of the oEncoding property. * * @return * possible object is * {@link String } * */ public String getOEncoding() { return oEncoding; } /** * Sets the value of the oEncoding property. * * @param value * allowed object is * {@link String } * */ public void setOEncoding(String value) { this.oEncoding = value; } /** * Gets the value of the datatype property. * * @return * possible object is * {@link String } * */ public String getDatatype() { return datatype; } /** * Sets the value of the datatype property. * * @param value * allowed object is * {@link String } * */ public void setDatatype(String value) { this.datatype = value; } /** * Gets the value of the usagecount property. * * @return * possible object is * {@link String } * */ public String getUsagecount() { return usagecount; } /** * Sets the value of the usagecount property. * * @param value * allowed object is * {@link String } * */ public void setUsagecount(String value) { this.usagecount = value; } /** * Gets the value of the lastusagedate property. * * @return * possible object is * {@link String } * */ public String getLastusagedate() { return lastusagedate; } /** * Sets the value of the lastusagedate property. * * @param value * allowed object is * {@link String } * */ public void setLastusagedate(String value) { this.lastusagedate = value; } /** * Gets the value of the creationtool property. * * @return * possible object is * {@link String } * */ public String getCreationtool() { return creationtool; } /** * Sets the value of the creationtool property. * * @param value * allowed object is * {@link String } * */ public void setCreationtool(String value) { this.creationtool = value; } /** * Gets the value of the creationtoolversion property. * * @return * possible object is * {@link String } * */ public String getCreationtoolversion() { return creationtoolversion; } /** * Sets the value of the creationtoolversion property. * * @param value * allowed object is * {@link String } * */ public void setCreationtoolversion(String value) { this.creationtoolversion = value; } /** * Gets the value of the creationdate property. * * @return * possible object is * {@link String } * */ public String getCreationdate() { return creationdate; } /** * Sets the value of the creationdate property. * * @param value * allowed object is * {@link String } * */ public void setCreationdate(String value) { this.creationdate = value; } /** * Gets the value of the creationid property. * * @return * possible object is * {@link String } * */ public String getCreationid() { return creationid; } /** * Sets the value of the creationid property. * * @param value * allowed object is * {@link String } * */ public void setCreationid(String value) { this.creationid = value; } /** * Gets the value of the changedate property. * * @return * possible object is * {@link String } * */ public String getChangedate() { return changedate; } /** * Sets the value of the changedate property. * * @param value * allowed object is * {@link String } * */ public void setChangedate(String value) { this.changedate = value; } /** * Gets the value of the oTmf property. * * @return * possible object is * {@link String } * */ public String getOTmf() { return oTmf; } /** * Sets the value of the oTmf property. * * @param value * allowed object is * {@link String } * */ public void setOTmf(String value) { this.oTmf = value; } /** * Gets the value of the changeid property. * * @return * possible object is * {@link String } * */ public String getChangeid() { return changeid; } /** * Sets the value of the changeid property. * * @param value * allowed object is * {@link String } * */ public void setChangeid(String value) { this.changeid = 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; } }