Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * If true, indicates that the described activity is one that must NOT be engaged in when following the plan.
     * </p>
   */
  public Activity setProhibited( boolean theBoolean) {
    myProhibited = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here


     * <b>Definition:</b>
     *
     * </p>
   */
  public BooleanDt addBooleanErr() {
    BooleanDt newType = new BooleanDt();
    getBooleanErr().add(newType);
    return newType;
  }
View Full Code Here

   */
  public Test addBooleanErr( boolean theBoolean) {
    if (myBooleanErr == null) {
      myBooleanErr = new java.util.ArrayList<BooleanDt>();
    }
    myBooleanErr.add(new BooleanDt(theBoolean));
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public BooleanDt addBooleanCorr() {
    BooleanDt newType = new BooleanDt();
    getBooleanCorr().add(newType);
    return newType;
  }
View Full Code Here

   */
  public Test addBooleanCorr( boolean theBoolean) {
    if (myBooleanCorr == null) {
      myBooleanCorr = new java.util.ArrayList<BooleanDt>();
    }
    myBooleanCorr.add(new BooleanDt(theBoolean));
    return this;
  }
View Full Code Here

     * Whether this hospitalization is a readmission
     * </p>
   */
  public BooleanDt getReAdmission() { 
    if (myReAdmission == null) {
      myReAdmission = new BooleanDt();
    }
    return myReAdmission;
  }
View Full Code Here

     * <b>Definition:</b>
     * Whether this hospitalization is a readmission
     * </p>
   */
  public Hospitalization setReAdmission( boolean theBoolean) {
    myReAdmission = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * Set to true if the item is attributable to a specific manufacturer (even if we don't know who that is)
     * </p>
   */
  public BooleanDt getIsBrand() { 
    if (myIsBrand == null) {
      myIsBrand = new BooleanDt();
    }
    return myIsBrand;
  }
View Full Code Here

     * <b>Definition:</b>
     * Set to true if the item is attributable to a specific manufacturer (even if we don't know who that is)
     * </p>
   */
  public Medication setIsBrand( boolean theBoolean) {
    myIsBrand = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * If true, indicates that no reaction occurred.
     * </p>
   */
  public BooleanDt getDidNotOccurFlag() { 
    if (myDidNotOccurFlag == null) {
      myDidNotOccurFlag = new BooleanDt();
    }
    return myDidNotOccurFlag;
  }
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.