package org.hl7.v3; 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 RTO_PQ_PQ complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RTO_PQ_PQ"> * <complexContent> * <extension base="{urn:hl7-org:v3}QTY"> * <sequence> * <element name="numerator" type="{urn:hl7-org:v3}PQ"/> * <element name="denominator" type="{urn:hl7-org:v3}PQ"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RTO_PQ_PQ", propOrder = { "numerator", "denominator" }) public class RTOPQPQ extends QTY { /** * */ private static final long serialVersionUID = 1L; @XmlElement(required = true) protected PQ numerator; @XmlElement(required = true) protected PQ denominator; /** * Gets the value of the numerator property. * * @return possible object is {@link PQ } * */ public PQ getNumerator(){ return numerator; } /** * Sets the value of the numerator property. * * @param value * allowed object is {@link PQ } * */ public void setNumerator(PQ value){ this.numerator = value; } /** * Gets the value of the denominator property. * * @return possible object is {@link PQ } * */ public PQ getDenominator(){ return denominator; } /** * Sets the value of the denominator property. * * @param value * allowed object is {@link PQ } * */ public void setDenominator(PQ value){ this.denominator = value; } }