// // 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 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 MeterType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="MeterType"> * <complexContent> * <extension base="{urn:mpeg:mpeg7:schema:2004}AudioDType"> * <sequence> * <element name="Numerator"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> * <minInclusive value="1"/> * <maxInclusive value="128"/> * </restriction> * </simpleType> * </element> * <element name="Denominator"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> * <enumeration value="1"/> * <enumeration value="2"/> * <enumeration value="4"/> * <enumeration value="8"/> * <enumeration value="16"/> * <enumeration value="32"/> * <enumeration value="64"/> * <enumeration value="128"/> * </restriction> * </simpleType> * </element> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MeterType", propOrder = { "numerator", "denominator" }) public class MeterType extends AudioDType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "Numerator") protected int numerator; @XmlElement(name = "Denominator", required = true) protected BigInteger denominator; /** * Gets the value of the numerator property. * */ public int getNumerator() { return numerator; } /** * Sets the value of the numerator property. * */ public void setNumerator(int value) { this.numerator = value; } /** * Gets the value of the denominator property. * * @return possible object is {@link BigInteger } * */ public BigInteger getDenominator() { return denominator; } /** * Sets the value of the denominator property. * * @param value * allowed object is {@link BigInteger } * */ public void setDenominator(BigInteger value) { this.denominator = value; } }