Search in sources :

Example 1 with TCPConfigGui

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);
}
Also used : VerticalPanel(org.apache.jmeter.gui.util.VerticalPanel) BorderLayout(java.awt.BorderLayout) LoginConfigGui(org.apache.jmeter.config.gui.LoginConfigGui) TCPConfigGui(org.apache.jmeter.protocol.tcp.config.gui.TCPConfigGui)

Aggregations

BorderLayout (java.awt.BorderLayout)1 LoginConfigGui (org.apache.jmeter.config.gui.LoginConfigGui)1 VerticalPanel (org.apache.jmeter.gui.util.VerticalPanel)1 TCPConfigGui (org.apache.jmeter.protocol.tcp.config.gui.TCPConfigGui)1