// // 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 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.XmlType; /** * <p> * Java class for DropoutDefectType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="DropoutDefectType"> * <complexContent> * <extension base="{http://www.prestospace.org/res/defect_quality}VisualImpairmentType"> * <sequence> * <element name="AffectedArea" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <choice maxOccurs="unbounded"> * <element name="Lines"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="from" type="{urn:mpeg:mpeg7:schema:2004}unsigned16" /> * <attribute name="to" type="{urn:mpeg:mpeg7:schema:2004}unsigned16" /> * </restriction> * </complexContent> * </complexType> * </element> * <element name="Region" type="{urn:mpeg:mpeg7:schema:2004}RegionLocatorType"/> * </choice> * <element name="Field" type="{http://www.prestospace.org/res/defect_quality}FieldType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="AffectedChannels" type="{http://www.prestospace.org/res/defect_quality}ChannelListType" minOccurs="0"/> * <element name="ReplacedByDropoutCompensation" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="replacedWithLine" type="{http://www.w3.org/2001/XMLSchema}integer" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DropoutDefectType", namespace = "http://www.prestospace.org/res/defect_quality", propOrder = { "affectedArea", "affectedChannels", "replacedByDropoutCompensation" }) public class DropoutDefectType extends VisualImpairmentType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "AffectedArea") protected DropoutDefectType.AffectedArea affectedArea; @XmlElement(name = "AffectedChannels") protected ChannelListType affectedChannels; @XmlElement(name = "ReplacedByDropoutCompensation") protected DropoutDefectType.ReplacedByDropoutCompensation replacedByDropoutCompensation; /** * Gets the value of the affectedArea property. * * @return possible object is {@link DropoutDefectType.AffectedArea } * */ public DropoutDefectType.AffectedArea getAffectedArea() { return affectedArea; } /** * Sets the value of the affectedArea property. * * @param value * allowed object is {@link DropoutDefectType.AffectedArea } * */ public void setAffectedArea(DropoutDefectType.AffectedArea value) { this.affectedArea = value; } /** * Gets the value of the affectedChannels property. * * @return possible object is {@link ChannelListType } * */ public ChannelListType getAffectedChannels() { return affectedChannels; } /** * Sets the value of the affectedChannels property. * * @param value * allowed object is {@link ChannelListType } * */ public void setAffectedChannels(ChannelListType value) { this.affectedChannels = value; } /** * Gets the value of the replacedByDropoutCompensation property. * * @return possible object is * {@link DropoutDefectType.ReplacedByDropoutCompensation } * */ public DropoutDefectType.ReplacedByDropoutCompensation getReplacedByDropoutCompensation() { return replacedByDropoutCompensation; } /** * Sets the value of the replacedByDropoutCompensation property. * * @param value * allowed object is * {@link DropoutDefectType.ReplacedByDropoutCompensation } * */ public void setReplacedByDropoutCompensation(DropoutDefectType.ReplacedByDropoutCompensation value) { this.replacedByDropoutCompensation = value; } /** * <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"> * <element name="Lines"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="from" type="{urn:mpeg:mpeg7:schema:2004}unsigned16" /> * <attribute name="to" type="{urn:mpeg:mpeg7:schema:2004}unsigned16" /> * </restriction> * </complexContent> * </complexType> * </element> * <element name="Region" type="{urn:mpeg:mpeg7:schema:2004}RegionLocatorType"/> * </choice> * <element name="Field" type="{http://www.prestospace.org/res/defect_quality}FieldType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "linesOrRegion", "field" }) public static class AffectedArea implements Serializable { private final static long serialVersionUID = 1L; @XmlElements({ @XmlElement(name = "Lines", namespace = "http://www.prestospace.org/res/defect_quality", type = DropoutDefectType.AffectedArea.Lines.class), @XmlElement(name = "Region", namespace = "http://www.prestospace.org/res/defect_quality", type = RegionLocatorType.class) }) protected List<Serializable> linesOrRegion; @XmlElement(name = "Field", namespace = "http://www.prestospace.org/res/defect_quality") protected FieldType field; /** * Gets the value of the linesOrRegion 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 linesOrRegion property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getLinesOrRegion().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link DropoutDefectType.AffectedArea.Lines } * {@link RegionLocatorType } * * */ public List<Serializable> getLinesOrRegion() { if (linesOrRegion == null) { linesOrRegion = new ArrayList<Serializable>(); } return this.linesOrRegion; } /** * Gets the value of the field property. * * @return possible object is {@link FieldType } * */ public FieldType getField() { return field; } /** * Sets the value of the field property. * * @param value * allowed object is {@link FieldType } * */ public void setField(FieldType value) { this.field = value; } /** * <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"> * <attribute name="from" type="{urn:mpeg:mpeg7:schema:2004}unsigned16" /> * <attribute name="to" type="{urn:mpeg:mpeg7:schema:2004}unsigned16" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Lines implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "from") protected Integer from; @XmlAttribute(name = "to") protected Integer to; /** * Gets the value of the from property. * * @return possible object is {@link Integer } * */ public Integer getFrom() { return from; } /** * Sets the value of the from property. * * @param value * allowed object is {@link Integer } * */ public void setFrom(Integer value) { this.from = value; } /** * Gets the value of the to property. * * @return possible object is {@link Integer } * */ public Integer getTo() { return to; } /** * Sets the value of the to property. * * @param value * allowed object is {@link Integer } * */ public void setTo(Integer value) { this.to = value; } } } /** * <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"> * <attribute name="replacedWithLine" type="{http://www.w3.org/2001/XMLSchema}integer" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class ReplacedByDropoutCompensation implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "replacedWithLine") protected BigInteger replacedWithLine; /** * Gets the value of the replacedWithLine property. * * @return possible object is {@link BigInteger } * */ public BigInteger getReplacedWithLine() { return replacedWithLine; } /** * Sets the value of the replacedWithLine property. * * @param value * allowed object is {@link BigInteger } * */ public void setReplacedWithLine(BigInteger value) { this.replacedWithLine = value; } } }