Package net.sf.logsaw.ui.dialogs

Examples of net.sf.logsaw.ui.dialogs.FilterSettingsDialog


      IRestrictable rest = editor.getRestrictable();
      List<ARestriction<?>> list = rest.getRestrictions();
      // Add restriction provided by Quick Filter
      boolean added = addNewRestriction(list, event, log);
     
      FilterSettingsDialog dlg = new FilterSettingsDialog(
          Display.getDefault().getActiveShell(), log, list, added);
      if (dlg.open() == Window.OK) {
        // Update input and refresh editor view
        rest.setRestrictions(dlg.getRestrictions());
        editor.goToPage(1);
       
        // Request re-evaluation
        IEvaluationService service =
          (IEvaluationService) window.getService(IEvaluationService.class);
View Full Code Here

TOP

Related Classes of net.sf.logsaw.ui.dialogs.FilterSettingsDialog

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.