use of org.apache.jmeter.protocol.tcp.config.gui.TCPConfigGui in project jmeter by apache.
the class TCPSamplerGui 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();
tcpDefaultPanel = new TCPConfigGui(false);
mainPanel.add(tcpDefaultPanel);
loginPanel = new LoginConfigGui(false);
// $NON-NLS-1$
loginPanel.setBorder(BorderFactory.createTitledBorder(JMeterUtils.getResString("login_config")));
mainPanel.add(loginPanel);
add(mainPanel, BorderLayout.CENTER);
}
Aggregations