Examples of HistoryFilterPlusDialog


Examples of org.zaproxy.zap.extension.history.HistoryFilterPlusDialog

  }
 
  private HistoryFilterPlusDialog getFilterPlusDialog() {
    if (filterPlusDialog == null) {
      filterPlusDialog =
        new HistoryFilterPlusDialog(getView().getMainFrame(), true);
    }
    return filterPlusDialog;
  }
View Full Code Here

Examples of org.zaproxy.zap.extension.history.HistoryFilterPlusDialog

    return result;
  }
 
  protected int showFilterPlusDialog() {
    HistoryFilterPlusDialog dialog = getFilterPlusDialog();
    dialog.setModal(true);
      try {
      dialog.setAllTags(getModel().getDb().getTableTag().getAllTags());
    } catch (SQLException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }

    int exit = dialog.showDialog();
    int result = 0;    // cancel, state unchanged
    HistoryFilter historyFilter = dialog.getFilter();
    if (exit == JOptionPane.OK_OPTION) {
        getProxyListenerLog().setHistoryFilter(historyFilter);
        searchHistory(historyFilter);
        logPanel.setFilterStatus(historyFilter);
        result = 1;    // applied
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.