use of org.apache.jmeter.protocol.ftp.config.gui.FtpConfigGui in project jmeter by apache.
the class FtpTestSamplerGui method init.
private void init() {
// WARNING: called from ctor so must not be overridden (i.e. must be private or final)
setLayout(new BorderLayout(0, 5));
setBorder(makeBorder());
add(makeTitlePanel(), BorderLayout.NORTH);
VerticalPanel mainPanel = new VerticalPanel();
ftpDefaultPanel = new FtpConfigGui(false);
mainPanel.add(ftpDefaultPanel);
loginPanel = new LoginConfigGui(false);
// $NON-NLS-1$
loginPanel.setBorder(BorderFactory.createTitledBorder(JMeterUtils.getResString("login_config")));
mainPanel.add(loginPanel);
add(mainPanel, BorderLayout.CENTER);
}
Aggregations