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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for SXCM_INT complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SXCM_INT"> * <complexContent> * <extension base="{urn:hl7-org:v3}INT"> * <attribute name="operator" type="{urn:hl7-org:v3}SetOperator" default="I" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SXCM_INT") @XmlSeeAlso({ IVLINT.class }) public class SXCMINT extends INT { /** * */ private static final long serialVersionUID = 1L; @XmlAttribute protected SetOperator operator; /** * Gets the value of the operator property. * * @return possible object is {@link SetOperator } * */ public SetOperator getOperator(){ if (operator == null) { return SetOperator.I; } else { return operator; } } /** * Sets the value of the operator property. * * @param value * allowed object is {@link SetOperator } * */ public void setOperator(SetOperator value){ this.operator = value; } }