org.zaproxy.zap.view.AbstractMultipleOptionsTablePanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zap Show documentation
Show all versions of zap Show documentation
The Zed Attack Proxy (ZAP) is an easy to use integrated penetration testing tool for finding vulnerabilities in web applications. It is designed to be used by people with a wide range of security experience and as such is ideal for developers and functional testers who are new to penetration testing. ZAP provides automated scanners as well as a set of tools that allow you to find security vulnerabilities manually.
The newest version!
/*
* Zed Attack Proxy (ZAP) and its related class files.
*
* ZAP is an HTTP/HTTPS proxy for assessing web application security.
*
* Copyright 2012 The ZAP Development Team
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.zaproxy.zap.view;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.event.TableModelEvent;
import javax.swing.event.TableModelListener;
import org.parosproxy.paros.Constant;
import org.zaproxy.zap.utils.EnableableInterface;
public abstract class AbstractMultipleOptionsTablePanel
extends AbstractMultipleOptionsBaseTablePanel {
private static final long serialVersionUID = 1L;
private static final String ENABLE_ALL_BUTTON_LABEL =
Constant.messages.getString("multiple.options.panel.enableAll.button.label");
private static final String DISABLE_ALL_BUTTON_LABEL =
Constant.messages.getString("multiple.options.panel.disableAll.button.label");
private JButton enableAllButton;
private JButton disableAllButton;
public AbstractMultipleOptionsTablePanel(AbstractMultipleOptionsTableModel model) {
this(model, true);
}
/**
* Constructs an {@code AbstractMultipleOptionsTablePanel} with the given model and whether
* modifications are allowed.
*
* @param model the model.
* @param allowModification {@code true} if modifications are allowed, {@code false} otherwise.
* @since 2.14.0
*/
protected AbstractMultipleOptionsTablePanel(
AbstractMultipleOptionsTableModel model, boolean allowModification) {
super(model, allowModification);
final boolean buttonsEnabled = getModel().getRowCount() > 0;
enableAllButton = new JButton(ENABLE_ALL_BUTTON_LABEL);
enableAllButton.setEnabled(buttonsEnabled);
enableAllButton.addActionListener(
new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
((AbstractMultipleOptionsTableModel>) getMultipleOptionsModel())
.setAllEnabled(true);
}
});
disableAllButton = new JButton(DISABLE_ALL_BUTTON_LABEL);
disableAllButton.setEnabled(buttonsEnabled);
disableAllButton.addActionListener(
new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
((AbstractMultipleOptionsTableModel>) getMultipleOptionsModel())
.setAllEnabled(false);
}
});
addButtonSpacer();
addButton(enableAllButton);
addButton(disableAllButton);
getModel()
.addTableModelListener(
new TableModelListener() {
@Override
public void tableChanged(TableModelEvent e) {
if (TableModelEvent.ALL_COLUMNS == e.getColumn()
|| TableModelEvent.INSERT == e.getType()
|| TableModelEvent.DELETE == e.getType()) {
boolean enabled = isEnabled() && getModel().getRowCount() > 0;
enableAllButton.setEnabled(enabled);
disableAllButton.setEnabled(enabled);
}
}
});
}
/**
* {@inheritDoc}
*
* Overridden to also enable/disable the added buttons ("enable all" and "disable all").
*/
@Override
public void setComponentEnabled(boolean enabled) {
super.setComponentEnabled(enabled);
boolean enable = enabled && getModel().getRowCount() > 0;
enableAllButton.setEnabled(enable);
disableAllButton.setEnabled(enable);
}
}