Package ca.uhn.fhir.model.primitive

Examples of ca.uhn.fhir.model.primitive.BooleanDt


     * <b>Definition:</b>
     * A flag that indicates whether the application accepts unknown elements as part of a resource.
     * </p>
   */
  public Conformance setAcceptUnknown( boolean theBoolean) {
    myAcceptUnknown = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here


     * Indicator that the user is or is not the requestor, or initiator, for the event being audited.
     * </p>
   */
  public BooleanDt getRequestor() { 
    if (myRequestor == null) {
      myRequestor = new BooleanDt();
    }
    return myRequestor;
  }
View Full Code Here

     * <b>Definition:</b>
     * Indicator that the user is or is not the requestor, or initiator, for the event being audited.
     * </p>
   */
  public Participant setRequestor( boolean theBoolean) {
    myRequestor = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * Self-reported indicator
     * </p>
   */
  public BooleanDt getReported() { 
    if (myReported == null) {
      myReported = new BooleanDt();
    }
    return myReported;
  }
View Full Code Here

     * <b>Definition:</b>
     * Self-reported indicator
     * </p>
   */
  public Reaction setReported( boolean theBoolean) {
    myReported = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * Indicates if the vaccination was refused.
     * </p>
   */
  public BooleanDt getRefusedIndicator() { 
    if (myRefusedIndicator == null) {
      myRefusedIndicator = new BooleanDt();
    }
    return myRefusedIndicator;
  }
View Full Code Here

     * <b>Definition:</b>
     * Indicates if the vaccination was refused.
     * </p>
   */
  public Immunization setRefusedIndicator( boolean theBoolean) {
    myRefusedIndicator = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * True if this administration was reported rather than directly administered.
     * </p>
   */
  public BooleanDt getReported() { 
    if (myReported == null) {
      myReported = new BooleanDt();
    }
    return myReported;
  }
View Full Code Here

     * <b>Definition:</b>
     * True if this administration was reported rather than directly administered.
     * </p>
   */
  public Immunization setReported( boolean theBoolean) {
    myReported = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * Set this to true if the record is saying that the medication was NOT taken.
     * </p>
   */
  public BooleanDt getWasNotGiven() { 
    if (myWasNotGiven == null) {
      myWasNotGiven = new BooleanDt();
    }
    return myWasNotGiven;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.primitive.BooleanDt

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.