package org.hl7.v3; import java.math.BigInteger; 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; /** * <p> * Java class for GLIST_PQ complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="GLIST_PQ"> * <complexContent> * <extension base="{urn:hl7-org:v3}ANY"> * <sequence> * <element name="head" type="{urn:hl7-org:v3}PQ"/> * <element name="increment" type="{urn:hl7-org:v3}PQ"/> * </sequence> * <attribute name="period" type="{urn:hl7-org:v3}int" /> * <attribute name="denominator" type="{urn:hl7-org:v3}int" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GLIST_PQ", propOrder = { "head", "increment" }) public class GLISTPQ extends ANY { /** * */ private static final long serialVersionUID = 1L; @XmlElement(required = true) protected PQ head; @XmlElement(required = true) protected PQ increment; @XmlAttribute protected BigInteger period; @XmlAttribute protected BigInteger denominator; /** * Gets the value of the head property. * * @return possible object is {@link PQ } * */ public PQ getHead(){ return head; } /** * Sets the value of the head property. * * @param value * allowed object is {@link PQ } * */ public void setHead(PQ value){ this.head = value; } /** * Gets the value of the increment property. * * @return possible object is {@link PQ } * */ public PQ getIncrement(){ return increment; } /** * Sets the value of the increment property. * * @param value * allowed object is {@link PQ } * */ public void setIncrement(PQ value){ this.increment = value; } /** * Gets the value of the period property. * * @return possible object is {@link BigInteger } * */ public BigInteger getPeriod(){ return period; } /** * Sets the value of the period property. * * @param value * allowed object is {@link BigInteger } * */ public void setPeriod(BigInteger value){ this.period = 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; } }