Package org.openmrs.logic.result

Examples of org.openmrs.logic.result.EmptyResult


    return latestEncounter(null);
  }
 
  public Result logic(String expression) {
    if (session.getPatient() == null)
      return new EmptyResult();
    cannotBePreviewed();
    LogicCriteria lc = getLogicService().parse(expression);
    return getLogicService().eval(session.getPatient(), lc);
  }
View Full Code Here

TOP

Related Classes of org.openmrs.logic.result.EmptyResult

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.