Package com.onpositive.gae.profiler

Examples of com.onpositive.gae.profiler.SnapshotFilter


 
  protected IFilter getViewerFilter() {
    return new IFilter() {

      public boolean accept(Object o) {
        SnapshotFilter modelFilter = data.getModelFilter();
        if (modelFilter != null) {
          return modelFilter.accept((ITrace) o);
        }
        return true;
      }

      public Point match(String text) {
        SnapshotFilter modelFilter = data.getModelFilter();
        if (modelFilter != null) {
          String pattern = modelFilter.pattern;
          int indexOf = text.toLowerCase().indexOf(
              pattern.toLowerCase());
          if (indexOf != -1) {
View Full Code Here

TOP

Related Classes of com.onpositive.gae.profiler.SnapshotFilter

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.