All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hl7.v3.PIVLTS Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.02.11 at 11:39:13 AM EST 
//


package org.hl7.v3;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *             Note: because this type is defined as an extension of SXCM_T,
 *             all of the attributes and elements accepted for T are also
 *             accepted by this definition.  However, they are NOT allowed
 *             by the normative description of this type.  Unfortunately,
 *             we cannot write a general purpose schematron contraints to
 *             provide that extra validation, thus applications must be
 *             aware that instance (fragments) that pass validation with
 *             this might might still not be legal.
 *          
 * 
 * 

Java class for PIVL_TS complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="PIVL_TS">
 *   <complexContent>
 *     <extension base="{urn:hl7-org:v3}SXCM_TS">
 *       <sequence>
 *         <element name="phase" type="{urn:hl7-org:v3}IVL_TS" minOccurs="0"/>
 *         <element name="period" type="{urn:hl7-org:v3}PQ" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="alignment" type="{urn:hl7-org:v3}CalendarCycle" />
 *       <attribute name="institutionSpecified" type="{urn:hl7-org:v3}bl" default="false" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PIVL_TS", propOrder = { "phase", "period" }) public class PIVLTS extends SXCMTS { protected IVLTS phase; protected PQ period; @XmlAttribute(name = "alignment") protected List alignment; @XmlAttribute(name = "institutionSpecified") protected Boolean institutionSpecified; /** * Gets the value of the phase property. * * @return * possible object is * {@link IVLTS } * */ public IVLTS getPhase() { return phase; } /** * Sets the value of the phase property. * * @param value * allowed object is * {@link IVLTS } * */ public void setPhase(IVLTS value) { this.phase = value; } /** * Gets the value of the period property. * * @return * possible object is * {@link PQ } * */ public PQ getPeriod() { return period; } /** * Sets the value of the period property. * * @param value * allowed object is * {@link PQ } * */ public void setPeriod(PQ value) { this.period = value; } /** * Gets the value of the alignment property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the alignment property. * *

* For example, to add a new item, do as follows: *

     *    getAlignment().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getAlignment() { if (alignment == null) { alignment = new ArrayList(); } return this.alignment; } /** * Gets the value of the institutionSpecified property. * * @return * possible object is * {@link Boolean } * */ public boolean isInstitutionSpecified() { if (institutionSpecified == null) { return false; } else { return institutionSpecified; } } /** * Sets the value of the institutionSpecified property. * * @param value * allowed object is * {@link Boolean } * */ public void setInstitutionSpecified(Boolean value) { this.institutionSpecified = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy