Package ch.elexis.data

Examples of ch.elexis.data.Patient


    Object[] patients = (Object[]) loader.getData();

    this.initList(patients);

    for (int i = 0; i < patients.length; i++) {
      Patient patient = (Patient) patients[i];

      int year = QueryUtil.extractYear(patient.getGeburtsdatum());
      if (year != 0) {
        this.handleCases(patient, year);
      }

    }
View Full Code Here

TOP

Related Classes of ch.elexis.data.Patient

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.