// // 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.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.XmlType; /** * <p> * Java class for ColorRangeDefectType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="ColorRangeDefectType"> * <complexContent> * <extension base="{http://www.prestospace.org/res/defect_quality}VisualImpairmentType"> * <sequence> * <element name="Channel" maxOccurs="unbounded"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="UsedRange" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" minOccurs="0"/> * <element name="SaturatedArea"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="high" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * <attribute name="low" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * <attribute name="component" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ColorRangeDefectType", namespace = "http://www.prestospace.org/res/defect_quality", propOrder = { "channel" }) public class ColorRangeDefectType extends VisualImpairmentType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "Channel", required = true) protected List<ColorRangeDefectType.Channel> channel; /** * Gets the value of the channel 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 channel property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getChannel().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ColorRangeDefectType.Channel } * * */ public List<ColorRangeDefectType.Channel> getChannel() { if (channel == null) { channel = new ArrayList<ColorRangeDefectType.Channel>(); } return this.channel; } /** * <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> * <element name="UsedRange" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" minOccurs="0"/> * <element name="SaturatedArea"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="high" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * <attribute name="low" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * <attribute name="component" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "usedRange", "saturatedArea" }) public static class Channel implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "UsedRange", namespace = "http://www.prestospace.org/res/defect_quality") protected Float usedRange; @XmlElement(name = "SaturatedArea", namespace = "http://www.prestospace.org/res/defect_quality", required = true) protected ColorRangeDefectType.Channel.SaturatedArea saturatedArea; @XmlAttribute(name = "component") protected String component; /** * Gets the value of the usedRange property. * * @return possible object is {@link Float } * */ public Float getUsedRange() { return usedRange; } /** * Sets the value of the usedRange property. * * @param value * allowed object is {@link Float } * */ public void setUsedRange(Float value) { this.usedRange = value; } /** * Gets the value of the saturatedArea property. * * @return possible object is * {@link ColorRangeDefectType.Channel.SaturatedArea } * */ public ColorRangeDefectType.Channel.SaturatedArea getSaturatedArea() { return saturatedArea; } /** * Sets the value of the saturatedArea property. * * @param value * allowed object is * {@link ColorRangeDefectType.Channel.SaturatedArea } * */ public void setSaturatedArea(ColorRangeDefectType.Channel.SaturatedArea value) { this.saturatedArea = value; } /** * Gets the value of the component property. * * @return possible object is {@link String } * */ public String getComponent() { return component; } /** * Sets the value of the component property. * * @param value * allowed object is {@link String } * */ public void setComponent(String value) { this.component = 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="high" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * <attribute name="low" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class SaturatedArea implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "high") protected Float high; @XmlAttribute(name = "low") protected Float low; /** * Gets the value of the high property. * * @return possible object is {@link Float } * */ public Float getHigh() { return high; } /** * Sets the value of the high property. * * @param value * allowed object is {@link Float } * */ public void setHigh(Float value) { this.high = value; } /** * Gets the value of the low property. * * @return possible object is {@link Float } * */ public Float getLow() { return low; } /** * Sets the value of the low property. * * @param value * allowed object is {@link Float } * */ public void setLow(Float value) { this.low = value; } } } }