Tabnine Logo
Encounter$Participant.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
ca.uhn.fhir.model.dstu2.resource.Encounter$Participant
constructor

Best Java code snippets using ca.uhn.fhir.model.dstu2.resource.Encounter$Participant.<init> (Showing top 3 results out of 315)

origin: org.carewebframework/org.carewebframework.cal.api.core

/**
 * Returns a participant instance based on the specified CCOW context.
 */
@Override
protected Participant fromCCOWContext(ContextItems contextItems) {
  Participant participant = null;
  
  try {
    participant = new Participant();
    //TODO: Populate participant object from context items.
    return participant;
  } catch (Exception e) {
    log.error(e);
    return null;
  }
}

origin: ca.uhn.hapi.fhir/hapi-fhir-structures-dstu2

/**
 * Adds and returns a new value for <b>participant</b> ()
 *
 * <p>
 * <b>Definition:</b>
 * The&nbsp;list of&nbsp;people&nbsp;responsible for providing the service
 * </p> 
 */
public Participant addParticipant() {
  Participant newType = new Participant();
  getParticipant().add(newType);
  return newType; 
}
origin: org.carewebframework/org.carewebframework.vista.ui.encounter

@Override
public void renderItem(Listitem item, Object data) {
  Participant participant;
  
  if (data instanceof Participant) {
    participant = (Participant) data;
  } else if (data instanceof IResource) {
    participant = new Participant();
    participant.setIndividual(new ResourceReferenceDt((IResource) data));
  } else {
    return;
  }
  
  item.setValue(participant);
  createCell(item, FhirUtil.formatName(EncounterUtil.getName(participant)));
  item.setSclass(isPrimary(participant) ? Constants.SCLASS_PRIMARY : null);
  item.addForward(Events.ON_DOUBLE_CLICK, item.getListbox(), null);
}

ca.uhn.fhir.model.dstu2.resourceEncounter$Participant<init>

Popular methods of Encounter$Participant

  • getIndividual
    Gets the value(s) for individual (who). creating it if it does not exist. Will not return null.Defin
  • addType
    Add a value for type () using an enumerated type. This is intended as a convenience method for situa
  • getType
    Gets the value(s) for type (). creating it if it does not exist. Will not return null.Definition: R
  • isEmpty
  • setIndividual
    Sets the value(s) for individual (who)Definition:

Popular in Java

  • Making http requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • getExternalFilesDir (Context)
  • getSystemService (Context)
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • Path (java.nio.file)
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now