Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * Explains why this element is needed and why it's been constrained as it has
     * </p>
   */
  public StructureElementDefinition setRequirements( String theString) {
    myRequirements = new StringDt(theString);
    return this;
  }
View Full Code Here


     * <b>Definition:</b>
     * Identifies additional names by which this element might also be known
     * </p>
   */
  public StringDt addSynonym() {
    StringDt newType = new StringDt();
    getSynonym().add(newType);
    return newType;
  }
View Full Code Here

   */
  public StructureElementDefinition addSynonym( String theString) {
    if (mySynonym == null) {
      mySynonym = new java.util.ArrayList<StringDt>();
    }
    mySynonym.add(new StringDt(theString));
    return this;
  }
View Full Code Here

     * The maximum number of times this element is permitted to appear in the instance
     * </p>
   */
  public StringDt getMax() { 
    if (myMax == null) {
      myMax = new StringDt();
    }
    return myMax;
  }
View Full Code Here

     * <b>Definition:</b>
     * The maximum number of times this element is permitted to appear in the instance
     * </p>
   */
  public StructureElementDefinition setMax( String theString) {
    myMax = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Identifies the name of a slice defined elsewhere in the profile whose constraints should be applied to the current element
     * </p>
   */
  public StringDt getNameReference() { 
    if (myNameReference == null) {
      myNameReference = new StringDt();
    }
    return myNameReference;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the name of a slice defined elsewhere in the profile whose constraints should be applied to the current element
     * </p>
   */
  public StructureElementDefinition setNameReference( String theString) {
    myNameReference = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Used to label the constraint in OCL or in short displays incapable of displaying the full human description
     * </p>
   */
  public StringDt getName() { 
    if (myName == null) {
      myName = new StringDt();
    }
    return myName;
  }
View Full Code Here

     * <b>Definition:</b>
     * Used to label the constraint in OCL or in short displays incapable of displaying the full human description
     * </p>
   */
  public StructureElementDefinitionConstraint setName( String theString) {
    myName = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Text that can be used to describe the constraint in messages identifying that the constraint has been violated
     * </p>
   */
  public StringDt getHuman() { 
    if (myHuman == null) {
      myHuman = new StringDt();
    }
    return myHuman;
  }
View Full Code Here

TOP

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

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.