// // 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.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for IlluminationInvariantColorType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="IlluminationInvariantColorType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <element name="DominantColor" type="{urn:mpeg:mpeg7:schema:2004}DominantColorType"/> * <element name="ScalableColor" type="{urn:mpeg:mpeg7:schema:2004}ScalableColorType"/> * <element name="ColorLayout" type="{urn:mpeg:mpeg7:schema:2004}ColorLayoutType"/> * <element name="ColorStructure" type="{urn:mpeg:mpeg7:schema:2004}ColorStructureType"/> * </choice> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IlluminationInvariantColorType", propOrder = { "dominantColor", "scalableColor", "colorLayout", "colorStructure" }) public class IlluminationInvariantColorType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "DominantColor") protected DominantColorType dominantColor; @XmlElement(name = "ScalableColor") protected ScalableColorType scalableColor; @XmlElement(name = "ColorLayout") protected ColorLayoutType colorLayout; @XmlElement(name = "ColorStructure") protected ColorStructureType colorStructure; /** * Gets the value of the dominantColor property. * * @return possible object is {@link DominantColorType } * */ public DominantColorType getDominantColor() { return dominantColor; } /** * Sets the value of the dominantColor property. * * @param value * allowed object is {@link DominantColorType } * */ public void setDominantColor(DominantColorType value) { this.dominantColor = value; } /** * Gets the value of the scalableColor property. * * @return possible object is {@link ScalableColorType } * */ public ScalableColorType getScalableColor() { return scalableColor; } /** * Sets the value of the scalableColor property. * * @param value * allowed object is {@link ScalableColorType } * */ public void setScalableColor(ScalableColorType value) { this.scalableColor = value; } /** * Gets the value of the colorLayout property. * * @return possible object is {@link ColorLayoutType } * */ public ColorLayoutType getColorLayout() { return colorLayout; } /** * Sets the value of the colorLayout property. * * @param value * allowed object is {@link ColorLayoutType } * */ public void setColorLayout(ColorLayoutType value) { this.colorLayout = value; } /** * Gets the value of the colorStructure property. * * @return possible object is {@link ColorStructureType } * */ public ColorStructureType getColorStructure() { return colorStructure; } /** * Sets the value of the colorStructure property. * * @param value * allowed object is {@link ColorStructureType } * */ public void setColorStructure(ColorStructureType value) { this.colorStructure = value; } }