package org.hl7.v3; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for IVXB_INT complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="IVXB_INT"> * <complexContent> * <extension base="{urn:hl7-org:v3}INT"> * <attribute name="inclusive" type="{urn:hl7-org:v3}bl" default="true" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IVXB_INT") public class IVXBINT extends INT { /** * */ private static final long serialVersionUID = 1L; @XmlAttribute protected Boolean inclusive; /** * Gets the value of the inclusive property. * * @return * possible object is * {@link Boolean } * */ public boolean isInclusive() { if (inclusive == null) { return true; } else { return inclusive; } } /** * Sets the value of the inclusive property. * * @param value * allowed object is * {@link Boolean } * */ public void setInclusive(Boolean value) { this.inclusive = value; } }