// // 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 BlockingLevelType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="BlockingLevelType"> * <complexContent> * <extension base="{http://www.prestospace.org/res/defect_quality}VisualImpairmentType"> * <sequence> * <element name="BlockEdgeIntensity"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="average" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * <attribute name="maximum" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BlockingLevelType", namespace = "http://www.prestospace.org/res/defect_quality", propOrder = { "blockEdgeIntensity" }) public class BlockingLevelType extends VisualImpairmentType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "BlockEdgeIntensity", required = true) protected BlockingLevelType.BlockEdgeIntensity blockEdgeIntensity; /** * Gets the value of the blockEdgeIntensity property. * * @return possible object is {@link BlockingLevelType.BlockEdgeIntensity } * */ public BlockingLevelType.BlockEdgeIntensity getBlockEdgeIntensity() { return blockEdgeIntensity; } /** * Sets the value of the blockEdgeIntensity property. * * @param value * allowed object is {@link BlockingLevelType.BlockEdgeIntensity } * */ public void setBlockEdgeIntensity(BlockingLevelType.BlockEdgeIntensity value) { this.blockEdgeIntensity = 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="maximum" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class BlockEdgeIntensity implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "average") protected Float average; @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 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; } } }