All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gen.core.tmx14.Tuv Maven / Gradle / Ivy


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;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <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>
 * 
* * */ @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 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(name = "datatype") @XmlSchemaType(name = "anySimpleType") protected String datatype; @XmlAttribute(name = "usagecount") @XmlSchemaType(name = "anySimpleType") protected String usagecount; @XmlAttribute(name = "lastusagedate") @XmlSchemaType(name = "anySimpleType") protected String lastusagedate; @XmlAttribute(name = "creationtool") @XmlSchemaType(name = "anySimpleType") protected String creationtool; @XmlAttribute(name = "creationtoolversion") @XmlSchemaType(name = "anySimpleType") protected String creationtoolversion; @XmlAttribute(name = "creationdate") @XmlSchemaType(name = "anySimpleType") protected String creationdate; @XmlAttribute(name = "creationid") @XmlSchemaType(name = "anySimpleType") protected String creationid; @XmlAttribute(name = "changedate") @XmlSchemaType(name = "anySimpleType") protected String changedate; @XmlAttribute(name = "o-tmf") @XmlSchemaType(name = "anySimpleType") protected String oTmf; @XmlAttribute(name = "changeid") @XmlSchemaType(name = "anySimpleType") protected String changeid; @XmlAttribute(name = "lang") @XmlSchemaType(name = "anySimpleType") protected String lang; /** * Gets the value of the noteOrProp property. * *

* 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 set method for the noteOrProp property. * *

* For example, to add a new item, do as follows: *

     *    getNoteOrProp().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Note } * {@link Prop } * * */ public List getNoteOrProp() { if (noteOrProp == null) { noteOrProp = new ArrayList(); } 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; } }