Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * Set this to true if the record is saying that the medication was NOT taken.
     * </p>
   */
  public MedicationStatement setWasNotGiven( boolean theBoolean) {
    myWasNotGiven = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here


     * If true, indicates that the resource refers to a specific group of real individuals.  If false, the group defines a set of intended individuals
     * </p>
   */
  public BooleanDt getActual() { 
    if (myActual == null) {
      myActual = new BooleanDt();
    }
    return myActual;
  }
View Full Code Here

     * <b>Definition:</b>
     * If true, indicates that the resource refers to a specific group of real individuals.  If false, the group defines a set of intended individuals
     * </p>
   */
  public Group setActual( boolean theBoolean) {
    myActual = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * If true, indicates the characteristic is one that is NOT held by members of the group
     * </p>
   */
  public BooleanDt getExclude() { 
    if (myExclude == null) {
      myExclude = new BooleanDt();
    }
    return myExclude;
  }
View Full Code Here

     * <b>Definition:</b>
     * If true, indicates the characteristic is one that is NOT held by members of the group
     * </p>
   */
  public Characteristic setExclude( boolean theBoolean) {
    myExclude = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * This ConceptMap was authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage
     * </p>
   */
  public BooleanDt getExperimental() { 
    if (myExperimental == null) {
      myExperimental = new BooleanDt();
    }
    return myExperimental;
  }
View Full Code Here

     * <b>Definition:</b>
     * This ConceptMap was authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage
     * </p>
   */
  public ConceptMap setExperimental( boolean theBoolean) {
    myExperimental = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * Whether the grid is a control in the experiment
     * </p>
   */
  public BooleanDt getIsControl() { 
    if (myIsControl == null) {
      myIsControl = new BooleanDt();
    }
    return myIsControl;
  }
View Full Code Here

     * <b>Definition:</b>
     * Whether the grid is a control in the experiment
     * </p>
   */
  public Sample setIsControl( boolean theBoolean) {
    myIsControl = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * If true, indicates that the described activity is one that must NOT be engaged in when following the plan.
     * </p>
   */
  public BooleanDt getProhibited() { 
    if (myProhibited == null) {
      myProhibited = new BooleanDt();
    }
    return myProhibited;
  }
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.