congrats Icon
New! Announcing our next generation AI code completions
Read here
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

  • Reading from database using SQL prepared statement
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getSupportFragmentManager (FragmentActivity)
  • setScale (BigDecimal)
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • JList (javax.swing)
  • Runner (org.openjdk.jmh.runner)
  • Option (scala)
  • Top 17 Free Sublime Text Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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