// // 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.math.BigInteger; 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.XmlList; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for ScalableColorType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="ScalableColorType"> * <complexContent> * <extension base="{urn:mpeg:mpeg7:schema:2004}VisualDType"> * <sequence> * <element name="Coeff" type="{urn:mpeg:mpeg7:schema:2004}integerVector"/> * </sequence> * <attribute name="numOfCoeff" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> * <enumeration value="16"/> * <enumeration value="32"/> * <enumeration value="64"/> * <enumeration value="128"/> * <enumeration value="256"/> * </restriction> * </simpleType> * </attribute> * <attribute name="numOfBitplanesDiscarded" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> * <enumeration value="0"/> * <enumeration value="1"/> * <enumeration value="2"/> * <enumeration value="3"/> * <enumeration value="4"/> * <enumeration value="6"/> * <enumeration value="8"/> * </restriction> * </simpleType> * </attribute> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ScalableColorType", propOrder = { "coeff" }) public class ScalableColorType extends VisualDType implements Serializable { private final static long serialVersionUID = 1L; @XmlList @XmlElement(name = "Coeff", required = true) protected List<BigInteger> coeff; @XmlAttribute(name = "numOfCoeff", required = true) protected BigInteger numOfCoeff; @XmlAttribute(name = "numOfBitplanesDiscarded", required = true) protected BigInteger numOfBitplanesDiscarded; /** * Gets the value of the coeff 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 coeff property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getCoeff().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link BigInteger } * * */ public List<BigInteger> getCoeff() { if (coeff == null) { coeff = new ArrayList<BigInteger>(); } return this.coeff; } /** * Gets the value of the numOfCoeff property. * * @return possible object is {@link BigInteger } * */ public BigInteger getNumOfCoeff() { return numOfCoeff; } /** * Sets the value of the numOfCoeff property. * * @param value * allowed object is {@link BigInteger } * */ public void setNumOfCoeff(BigInteger value) { this.numOfCoeff = value; } /** * Gets the value of the numOfBitplanesDiscarded property. * * @return possible object is {@link BigInteger } * */ public BigInteger getNumOfBitplanesDiscarded() { return numOfBitplanesDiscarded; } /** * Sets the value of the numOfBitplanesDiscarded property. * * @param value * allowed object is {@link BigInteger } * */ public void setNumOfBitplanesDiscarded(BigInteger value) { this.numOfBitplanesDiscarded = value; } }