Package ca.uhn.fhir.model.dstu.composite

Examples of ca.uhn.fhir.model.dstu.composite.ContainedDt


      theWriter.writeEnd();
      break;
    }
    case CONTAINED_RESOURCES: {
      theWriter.writeStartArray(theChildName);
      ContainedDt value = (ContainedDt) theValue;
      for (IResource next : value.getContainedResources()) {
        encodeResourceToJsonStreamWriter(theResDef, next, theWriter, null, true);
      }
      theWriter.writeEnd();
      break;
    }
View Full Code Here


        }
      }
      break;
    }
    case CONTAINED_RESOURCES: {
      ContainedDt value = (ContainedDt) theElement;
      for (IResource next : value.getContainedResources()) {
        BaseRuntimeElementCompositeDefinition<?> def = myContext.getResourceDefinition(next);
        getAllChildElementsOfType(next, def, theType, theList);
      }
      break;
    }
View Full Code Here

  private NarrativeDt myText;

  @Override
  public ContainedDt getContained() {
    if (myContained == null) {
      myContained = new ContainedDt();
    }
    return myContained;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.dstu.composite.ContainedDt

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.