Package ca.uhn.fhir.model.primitive

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


     * Name of the platform being used
     * </p>
   */
  public CodeDt getName() { 
    if (myName == null) {
      myName = new CodeDt();
    }
    return myName;
  }
View Full Code Here


     * <b>Definition:</b>
     * Name of the platform being used
     * </p>
   */
  public Platform setName( String theCode) {
    myName = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Read type of the technology
     * </p>
   */
  public CodeDt getReadType() { 
    if (myReadType == null) {
      myReadType = new CodeDt();
    }
    return myReadType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Read type of the technology
     * </p>
   */
  public Platform setReadType( String theCode) {
    myReadType = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Information that only applies to packages (not products)
     * </p>
   */
  public CodeDt getPackage() { 
    if (myPackage == null) {
      myPackage = new CodeDt();
    }
    return myPackage;
  }
View Full Code Here

     * <b>Definition:</b>
     * Information that only applies to packages (not products)
     * </p>
   */
  public Medication setPackage( String theCode) {
    myPackage = new CodeDt(theCode);
    return this;
  }
View Full Code Here

          RestQuery query = null;
          if (!allOptional) {
            query = rest.addQuery();
            query.getDocumentation().setValue(searchMethodBinding.getDescription());
            query.addUndeclaredExtension(false, ExtensionConstants.QUERY_RETURN_TYPE, new CodeDt(resourceName));
            for (String nextInclude : searchMethodBinding.getIncludes()) {
              query.addUndeclaredExtension(false, ExtensionConstants.QUERY_ALLOWED_INCLUDE, new StringDt(nextInclude));
            }
          }
View Full Code Here

     * Identifies the type of the data in the attachment and allows a method to be chosen to interpret or render the data. Includes mime type parameters such as charset where appropriate
     * </p>
   */
  public CodeDt getContentType() { 
    if (myContentType == null) {
      myContentType = new CodeDt();
    }
    return myContentType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the type of the data in the attachment and allows a method to be chosen to interpret or render the data. Includes mime type parameters such as charset where appropriate
     * </p>
   */
  public AttachmentDt setContentType( String theCode) {
    myContentType = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * The human language of the content. The value can be any valid value according to BCP 47
     * </p>
   */
  public CodeDt getLanguage() { 
    if (myLanguage == null) {
      myLanguage = new CodeDt();
    }
    return myLanguage;
  }
View Full Code Here

TOP

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

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.