Package ca.uhn.fhir.model.primitive

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


            } else if (searchParamChain == null) {
              searchParam.addChain(nextParameter.getName());
              searchParamChain = searchParam.getChain().get(searchParam.getChain().size()-1);
              ExtensionDt ext = new ExtensionDt();
              ext.setUrl(ExtensionConstants.CONF_CHAIN_REQUIRED);
              ext.setValue(new BooleanDt(nextParameter.isRequired()));
              searchParamChain.getUndeclaredExtensions().add(ext);
             
            } else {
              ExtensionDt ext = new ExtensionDt();
              ext.setUrl(ExtensionConstants.CONF_ALSO_CHAIN);
              searchParamChain.getUndeclaredExtensions().add(ext);
             
              ExtensionDt extReq = new ExtensionDt();
              extReq.setUrl(ExtensionConstants.CONF_CHAIN_REQUIRED);
              extReq.setValue(new BooleanDt(nextParameter.isRequired()));
              ext.getUndeclaredExtensions().add(extReq);

            }

          }
View Full Code Here


     * Whether the organization's record is still in active use
     * </p>
   */
  public BooleanDt getActive() { 
    if (myActive == null) {
      myActive = new BooleanDt();
    }
    return myActive;
  }
View Full Code Here

     * <b>Definition:</b>
     * Whether the organization's record is still in active use
     * </p>
   */
  public Organization setActive( boolean theBoolean) {
    myActive = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * This profile 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 profile was authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage
     * </p>
   */
  public Profile setExperimental( boolean theBoolean) {
    myExperimental = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * This definition of a profile on a structure is published as a formal statement. Some structural definitions might be defined purely for internal use within the profile, and not intended to be used outside that context
     * </p>
   */
  public BooleanDt getPublish() { 
    if (myPublish == null) {
      myPublish = new BooleanDt();
    }
    return myPublish;
  }
View Full Code Here

     * <b>Definition:</b>
     * This definition of a profile on a structure is published as a formal statement. Some structural definitions might be defined purely for internal use within the profile, and not intended to be used outside that context
     * </p>
   */
  public Structure setPublish( boolean theBoolean) {
    myPublish = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * If the matching elements have to occur in the same order as defined in the profile
     * </p>
   */
  public BooleanDt getOrdered() { 
    if (myOrdered == null) {
      myOrdered = new BooleanDt();
    }
    return myOrdered;
  }
View Full Code Here

     * <b>Definition:</b>
     * If the matching elements have to occur in the same order as defined in the profile
     * </p>
   */
  public StructureElementSlicing setOrdered( boolean theBoolean) {
    myOrdered = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * Indicates that this code was chosen by a user directly - i.e. off a pick list of available items (codes or displays)
     * </p>
   */
  public BooleanDt getPrimary() { 
    if (myPrimary == null) {
      myPrimary = new BooleanDt();
    }
    return myPrimary;
  }
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.