// // 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; import javax.xml.bind.annotation.XmlValue; /** * <p> * Java class for FlickerLevelType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="FlickerLevelType"> * <complexContent> * <extension base="{http://www.prestospace.org/res/defect_quality}VisualImpairmentType"> * <sequence> * <element name="AverageIntensity" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" minOccurs="0"/> * <element name="AverageIntensitySamples" type="{http://www.prestospace.org/res/defect_quality}ImpairmentSampleListType" minOccurs="0"/> * <element name="FrequencyDistribution" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence maxOccurs="unbounded"> * <element name="FlickerIntensity"> * <complexType> * <simpleContent> * <extension base="<urn:mpeg:mpeg7:schema:2004>zeroToOneType"> * <attribute name="frequency" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> * </extension> * </simpleContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="Locality" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FlickerLevelType", namespace = "http://www.prestospace.org/res/defect_quality", propOrder = { "averageIntensity", "averageIntensitySamples", "frequencyDistribution", "locality" }) public class FlickerLevelType extends VisualImpairmentType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "AverageIntensity") protected Float averageIntensity; @XmlElement(name = "AverageIntensitySamples") protected ImpairmentSampleListType averageIntensitySamples; @XmlElement(name = "FrequencyDistribution") protected FlickerLevelType.FrequencyDistribution frequencyDistribution; @XmlElement(name = "Locality") protected Float locality; /** * Gets the value of the averageIntensity property. * * @return possible object is {@link Float } * */ public Float getAverageIntensity() { return averageIntensity; } /** * Sets the value of the averageIntensity property. * * @param value * allowed object is {@link Float } * */ public void setAverageIntensity(Float value) { this.averageIntensity = value; } /** * Gets the value of the averageIntensitySamples property. * * @return possible object is {@link ImpairmentSampleListType } * */ public ImpairmentSampleListType getAverageIntensitySamples() { return averageIntensitySamples; } /** * Sets the value of the averageIntensitySamples property. * * @param value * allowed object is {@link ImpairmentSampleListType } * */ public void setAverageIntensitySamples(ImpairmentSampleListType value) { this.averageIntensitySamples = value; } /** * Gets the value of the frequencyDistribution property. * * @return possible object is {@link FlickerLevelType.FrequencyDistribution } * */ public FlickerLevelType.FrequencyDistribution getFrequencyDistribution() { return frequencyDistribution; } /** * Sets the value of the frequencyDistribution property. * * @param value * allowed object is * {@link FlickerLevelType.FrequencyDistribution } * */ public void setFrequencyDistribution(FlickerLevelType.FrequencyDistribution value) { this.frequencyDistribution = value; } /** * Gets the value of the locality property. * * @return possible object is {@link Float } * */ public Float getLocality() { return locality; } /** * Sets the value of the locality property. * * @param value * allowed object is {@link Float } * */ public void setLocality(Float value) { this.locality = 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 maxOccurs="unbounded"> * <element name="FlickerIntensity"> * <complexType> * <simpleContent> * <extension base="<urn:mpeg:mpeg7:schema:2004>zeroToOneType"> * <attribute name="frequency" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> * </extension> * </simpleContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "flickerIntensity" }) public static class FrequencyDistribution implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "FlickerIntensity", namespace = "http://www.prestospace.org/res/defect_quality", required = true) protected List<FlickerLevelType.FrequencyDistribution.FlickerIntensity> flickerIntensity; /** * Gets the value of the flickerIntensity 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 flickerIntensity property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getFlickerIntensity().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link FlickerLevelType.FrequencyDistribution.FlickerIntensity } * * */ public List<FlickerLevelType.FrequencyDistribution.FlickerIntensity> getFlickerIntensity() { if (flickerIntensity == null) { flickerIntensity = new ArrayList<FlickerLevelType.FrequencyDistribution.FlickerIntensity>(); } return this.flickerIntensity; } /** * <p> * Java class for anonymous complex type. * * <p> * The following schema fragment specifies the expected content * contained within this class. * * <pre> * <complexType> * <simpleContent> * <extension base="<urn:mpeg:mpeg7:schema:2004>zeroToOneType"> * <attribute name="frequency" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class FlickerIntensity implements Serializable { private final static long serialVersionUID = 1L; @XmlValue protected float value; @XmlAttribute(name = "frequency", required = true) protected float frequency; /** * Gets the value of the value property. * */ public float getValue() { return value; } /** * Sets the value of the value property. * */ public void setValue(float value) { this.value = value; } /** * Gets the value of the frequency property. * */ public float getFrequency() { return frequency; } /** * Sets the value of the frequency property. * */ public void setFrequency(float value) { this.frequency = value; } } } }