use of java.awt.CardLayout in project zaproxy by zaproxy.
the class OptionsScannerPanel method initialize.
/**
* This method initializes the Panel
*/
private void initialize() {
this.setLayout(new CardLayout());
this.setName(Constant.messages.getString("ascan.options.title"));
this.add(new JScrollPane(getPanelScanner()));
}
use of java.awt.CardLayout in project zaproxy by zaproxy.
the class OptionsVariantPanel method initialize.
/**
* This method initializes the Panel
*/
private void initialize() {
this.setLayout(new CardLayout());
this.setName(Constant.messages.getString("variant.options.title"));
this.add(getPanelScanner(), getPanelScanner().getName());
}
use of java.awt.CardLayout in project zaproxy by zaproxy.
the class ScanPanel2 method initialize.
/**
* This method initializes this
*
*/
private void initialize(ImageIcon icon) {
this.setLayout(new CardLayout());
if (Model.getSingleton().getOptionsParam().getViewParam().getWmUiHandlingOption() == 0) {
this.setSize(474, 251);
}
this.setName(Constant.messages.getString(prefix + ".panel.title"));
this.setIcon(icon);
this.add(getPanelCommand(), prefix + ".panel");
scanStatus = new ScanStatus(icon, Constant.messages.getString(prefix + ".panel.title"));
if (View.isInitialised()) {
View.getSingleton().getMainFrame().getMainFooterPanel().addFooterToolbarRightLabel(scanStatus.getCountLabel());
}
}
use of java.awt.CardLayout in project zaproxy by zaproxy.
the class SessionExcludeFromProxyPanel method initialize.
/**
* This method initializes this
*/
private void initialize() {
this.setLayout(new CardLayout());
this.setName(PANEL_NAME);
regexesPanel = new MultipleRegexesOptionsPanel(View.getSingleton().getSessionDialog());
this.add(getPanelSession(), getPanelSession().getName());
}
use of java.awt.CardLayout in project zaproxy by zaproxy.
the class SessionExcludeFromScanPanel method initialize.
/**
* This method initializes this
*/
private void initialize() {
this.setLayout(new CardLayout());
this.setName(PANEL_NAME);
regexesPanel = new MultipleRegexesOptionsPanel(View.getSingleton().getSessionDialog());
this.add(getPanelSession(), getPanelSession().getName());
}
Aggregations