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 SXCM_CD complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SXCM_CD"> * <complexContent> * <extension base="{urn:hl7-org:v3}CD"> * <attribute name="operator" type="{urn:hl7-org:v3}SetOperator" default="I" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SXCM_CD") public class SXCMCD extends CD { /** * */ 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; } }