コード例 #1
0
 /**
  * @param value {@link #location} (A simple XPath limited to element names, repetition
  *     indicators and the default child access that identifies one of the elements in the
  *     resource that caused this issue to be raised.)
  */
 public OperationOutcomeIssueComponent addLocation(String value) { // 1
   StringType t = new StringType();
   t.setValue(value);
   if (this.location == null) this.location = new ArrayList<StringType>();
   this.location.add(t);
   return this;
 }
コード例 #2
0
 /** @param value {@link #exclude} (Names of resource types to exclude.) */
 public ProcessRequest addExclude(String value) { // 1
   StringType t = new StringType();
   t.setValue(value);
   if (this.exclude == null) this.exclude = new ArrayList<StringType>();
   this.exclude.add(t);
   return this;
 }
コード例 #3
0
ファイル: Address.java プロジェクト: mrroot/hapi-fhir
 /**
  * @param value {@link #line} (This component contains the house number, apartment number, street
  *     name, street direction, P.O. Box number, delivery hints, and similar address information.)
  */
 public Address addLine(String value) { // 1
   StringType t = new StringType();
   t.setValue(value);
   if (this.line == null) this.line = new ArrayList<StringType>();
   this.line.add(t);
   return this;
 }
コード例 #4
0
ファイル: Factory.java プロジェクト: hl7-fhir/fhir-svn
 public static StringType newString_(String value) {
   if (value == null) return null;
   StringType res = new StringType();
   res.setValue(value);
   return res;
 }