use of java.awt.CardLayout in project zaproxy by zaproxy.
the class SessionGeneralPanel method initialize.
/**
* This method initializes this
*/
private void initialize() {
this.setLayout(new CardLayout());
this.setName(Constant.messages.getString("session.general"));
this.add(getPanelSession(), getPanelSession().getName());
}
use of java.awt.CardLayout in project zaproxy by zaproxy.
the class AbstractParamContainerPanel method getJPanel1.
/**
* This method initializes jPanel1
*
* @return javax.swing.JPanel
*/
private JPanel getJPanel1() {
if (jPanel1 == null) {
jPanel1 = new JPanel();
jPanel1.setLayout(new CardLayout());
jPanel1.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
jPanel1.add(getJScrollPane1(), getJScrollPane1().getName());
}
return jPanel1;
}
use of java.awt.CardLayout in project zaproxy by zaproxy.
the class AlertPanel method initialize.
/**
* This method initializes this
*/
private void initialize() {
this.setLayout(new CardLayout());
this.setSize(274, 251);
this.setName(Constant.messages.getString("alerts.panel.title"));
// 'flag' icon
this.setIcon(new ImageIcon(AlertPanel.class.getResource("/resource/icon/16/071.png")));
this.add(getPanelCommand(), getPanelCommand().getName());
this.setDefaultAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_A, Toolkit.getDefaultToolkit().getMenuShortcutKeyMask() | Event.SHIFT_MASK, false));
this.setMnemonic(Constant.messages.getChar("alerts.panel.mnemonic"));
this.setShowByDefault(true);
}
use of java.awt.CardLayout in project zaproxy by zaproxy.
the class OptionsApiPanel method initialize.
/**
* This method initializes this
*/
private void initialize() {
this.setLayout(new CardLayout());
this.setName(Constant.messages.getString("api.options.title"));
this.add(getPanelMisc(), getPanelMisc().getName());
}
use of java.awt.CardLayout in project zaproxy by zaproxy.
the class OptionsCheckForUpdatesPanel method initialize.
/**
* This method initializes this
*/
private void initialize() {
this.setLayout(new CardLayout());
this.setName(Constant.messages.getString("cfu.options.title"));
this.add(getPanelMisc(), getPanelMisc().getName());
}
Aggregations