Package nz.org.winters.appspot.acrareporter.shared

Examples of nz.org.winters.appspot.acrareporter.shared.ErrorListFilter


 
  private void getBasicErrorInfo(HttpServletResponse response, String packageName, String filter) throws Exception
  {
  //  response.getWriter().println("PACKAGES");
    List<BasicErrorInfo> list;
    ErrorListFilter elf = ErrorListFilter.fromFilterString(filter);
    switch(elf)
    {
      case elfFixed:
        list = ObjectifyService.ofy().load().type(BasicErrorInfo.class).filter("PACKAGE_NAME", packageName).filter("fixed",true).list();
        break;
View Full Code Here


  public void refreshList()
  {
    startLoading();
    dataProvider.startLoading();
    ErrorListFilter elf = ErrorListFilter.values()[comboShow.getSelectedIndex()];
    remoteService.getBasicErrorInfo(packageName, elf, mGetBasicErrorCallback);
  }
View Full Code Here

TOP

Related Classes of nz.org.winters.appspot.acrareporter.shared.ErrorListFilter

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.