// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // 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.07.24 at 11:42:28 PM CEST // package eu.prestoprime.model.ext.qa; import java.io.Serializable; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for ErrorEventType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="ErrorEventType"> * <complexContent> * <extension base="{urn:mpeg:mpeg7:schema:2004}AudioDSType"> * <sequence> * <element name="ErrorClass" type="{urn:mpeg:mpeg7:schema:2004}ControlledTermUseType"/> * <element name="ChannelNo" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/> * <element name="TimeStamp" type="{urn:mpeg:mpeg7:schema:2004}MediaTimeType"/> * <element name="Relevance" type="{urn:mpeg:mpeg7:schema:2004}unsigned4"/> * <element name="DetectionProcess"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="manual"/> * <enumeration value="automatic"/> * </restriction> * </simpleType> * </element> * <element name="Status"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="undefined"/> * <enumeration value="checked"/> * <enumeration value="needs restoration"/> * <enumeration value="restored"/> * <enumeration value="deleted"/> * </restriction> * </simpleType> * </element> * <element name="Comment" type="{urn:mpeg:mpeg7:schema:2004}TextAnnotationType"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ErrorEventType", propOrder = { "errorClass", "channelNo", "timeStamp", "relevance", "detectionProcess", "status", "comment" }) @XmlSeeAlso({ WowFlutterDefectType.class, PitchShiftDefectType.class }) public class ErrorEventType extends AudioDSType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "ErrorClass", required = true) protected ControlledTermUseType errorClass; @XmlElement(name = "ChannelNo", required = true) @XmlSchemaType(name = "positiveInteger") protected BigInteger channelNo; @XmlElement(name = "TimeStamp", required = true) protected MediaTimeType timeStamp; @XmlElement(name = "Relevance") protected int relevance; @XmlElement(name = "DetectionProcess", required = true) protected String detectionProcess; @XmlElement(name = "Status", required = true) protected String status; @XmlElement(name = "Comment", required = true) protected TextAnnotationType comment; /** * Gets the value of the errorClass property. * * @return possible object is {@link ControlledTermUseType } * */ public ControlledTermUseType getErrorClass() { return errorClass; } /** * Sets the value of the errorClass property. * * @param value * allowed object is {@link ControlledTermUseType } * */ public void setErrorClass(ControlledTermUseType value) { this.errorClass = value; } /** * Gets the value of the channelNo property. * * @return possible object is {@link BigInteger } * */ public BigInteger getChannelNo() { return channelNo; } /** * Sets the value of the channelNo property. * * @param value * allowed object is {@link BigInteger } * */ public void setChannelNo(BigInteger value) { this.channelNo = value; } /** * Gets the value of the timeStamp property. * * @return possible object is {@link MediaTimeType } * */ public MediaTimeType getTimeStamp() { return timeStamp; } /** * Sets the value of the timeStamp property. * * @param value * allowed object is {@link MediaTimeType } * */ public void setTimeStamp(MediaTimeType value) { this.timeStamp = value; } /** * Gets the value of the relevance property. * */ public int getRelevance() { return relevance; } /** * Sets the value of the relevance property. * */ public void setRelevance(int value) { this.relevance = value; } /** * Gets the value of the detectionProcess property. * * @return possible object is {@link String } * */ public String getDetectionProcess() { return detectionProcess; } /** * Sets the value of the detectionProcess property. * * @param value * allowed object is {@link String } * */ public void setDetectionProcess(String value) { this.detectionProcess = value; } /** * Gets the value of the status property. * * @return possible object is {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Gets the value of the comment property. * * @return possible object is {@link TextAnnotationType } * */ public TextAnnotationType getComment() { return comment; } /** * Sets the value of the comment property. * * @param value * allowed object is {@link TextAnnotationType } * */ public void setComment(TextAnnotationType value) { this.comment = value; } }