// // 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 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 DustLevelType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="DustLevelType"> * <complexContent> * <extension base="{http://www.prestospace.org/res/defect_quality}VisualImpairmentType"> * <sequence> * <element name="NumberOfSpots" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="average" type="{urn:mpeg:mpeg7:schema:2004}unsigned32" /> * </restriction> * </complexContent> * </complexType> * </element> * <element name="Area" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="average" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * </restriction> * </complexContent> * </complexType> * </element> * <element name="Size" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="average" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * <attribute name="minimum" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * <attribute name="maximum" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * </restriction> * </complexContent> * </complexType> * </element> * <element name="AverageIntensity" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="brightSpots" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * <attribute name="darkSpots" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DustLevelType", namespace = "http://www.prestospace.org/res/defect_quality", propOrder = { "numberOfSpots", "area", "size", "averageIntensity" }) public class DustLevelType extends VisualImpairmentType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "NumberOfSpots") protected DustLevelType.NumberOfSpots numberOfSpots; @XmlElement(name = "Area") protected DustLevelType.Area area; @XmlElement(name = "Size") protected DustLevelType.Size size; @XmlElement(name = "AverageIntensity") protected DustLevelType.AverageIntensity averageIntensity; /** * Gets the value of the numberOfSpots property. * * @return possible object is {@link DustLevelType.NumberOfSpots } * */ public DustLevelType.NumberOfSpots getNumberOfSpots() { return numberOfSpots; } /** * Sets the value of the numberOfSpots property. * * @param value * allowed object is {@link DustLevelType.NumberOfSpots } * */ public void setNumberOfSpots(DustLevelType.NumberOfSpots value) { this.numberOfSpots = value; } /** * Gets the value of the area property. * * @return possible object is {@link DustLevelType.Area } * */ public DustLevelType.Area getArea() { return area; } /** * Sets the value of the area property. * * @param value * allowed object is {@link DustLevelType.Area } * */ public void setArea(DustLevelType.Area value) { this.area = value; } /** * Gets the value of the size property. * * @return possible object is {@link DustLevelType.Size } * */ public DustLevelType.Size getSize() { return size; } /** * Sets the value of the size property. * * @param value * allowed object is {@link DustLevelType.Size } * */ public void setSize(DustLevelType.Size value) { this.size = value; } /** * Gets the value of the averageIntensity property. * * @return possible object is {@link DustLevelType.AverageIntensity } * */ public DustLevelType.AverageIntensity getAverageIntensity() { return averageIntensity; } /** * Sets the value of the averageIntensity property. * * @param value * allowed object is {@link DustLevelType.AverageIntensity } * */ public void setAverageIntensity(DustLevelType.AverageIntensity value) { this.averageIntensity = 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="average" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Area implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "average") protected Float average; /** * Gets the value of the average property. * * @return possible object is {@link Float } * */ public Float getAverage() { return average; } /** * Sets the value of the average property. * * @param value * allowed object is {@link Float } * */ public void setAverage(Float value) { this.average = 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="brightSpots" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * <attribute name="darkSpots" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class AverageIntensity implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "brightSpots") protected Float brightSpots; @XmlAttribute(name = "darkSpots") protected Float darkSpots; /** * Gets the value of the brightSpots property. * * @return possible object is {@link Float } * */ public Float getBrightSpots() { return brightSpots; } /** * Sets the value of the brightSpots property. * * @param value * allowed object is {@link Float } * */ public void setBrightSpots(Float value) { this.brightSpots = value; } /** * Gets the value of the darkSpots property. * * @return possible object is {@link Float } * */ public Float getDarkSpots() { return darkSpots; } /** * Sets the value of the darkSpots property. * * @param value * allowed object is {@link Float } * */ public void setDarkSpots(Float value) { this.darkSpots = 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="average" type="{urn:mpeg:mpeg7:schema:2004}unsigned32" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class NumberOfSpots implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "average") protected Long average; /** * Gets the value of the average property. * * @return possible object is {@link Long } * */ public Long getAverage() { return average; } /** * Sets the value of the average property. * * @param value * allowed object is {@link Long } * */ public void setAverage(Long value) { this.average = 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="average" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * <attribute name="minimum" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * <attribute name="maximum" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Size implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "average") protected Float average; @XmlAttribute(name = "minimum") protected Float minimum; @XmlAttribute(name = "maximum") protected Float maximum; /** * Gets the value of the average property. * * @return possible object is {@link Float } * */ public Float getAverage() { return average; } /** * Sets the value of the average property. * * @param value * allowed object is {@link Float } * */ public void setAverage(Float value) { this.average = value; } /** * Gets the value of the minimum property. * * @return possible object is {@link Float } * */ public Float getMinimum() { return minimum; } /** * Sets the value of the minimum property. * * @param value * allowed object is {@link Float } * */ public void setMinimum(Float value) { this.minimum = value; } /** * Gets the value of the maximum property. * * @return possible object is {@link Float } * */ public Float getMaximum() { return maximum; } /** * Sets the value of the maximum property. * * @param value * allowed object is {@link Float } * */ public void setMaximum(Float value) { this.maximum = value; } } }