Search in sources :

Example 1 with OnErrorPanel

use of org.apache.jmeter.gui.OnErrorPanel in project jmeter by apache.

the class ResultActionGui method init.

private void init() {
    // WARNING: called from ctor so must not be overridden (i.e. must be private or final)
    setLayout(new BorderLayout());
    setBorder(makeBorder());
    Box box = Box.createVerticalBox();
    box.add(makeTitlePanel());
    errorPanel = new OnErrorPanel();
    box.add(errorPanel);
    add(box, BorderLayout.NORTH);
}
Also used : BorderLayout(java.awt.BorderLayout) OnErrorPanel(org.apache.jmeter.gui.OnErrorPanel) Box(javax.swing.Box)

Aggregations

BorderLayout (java.awt.BorderLayout)1 Box (javax.swing.Box)1 OnErrorPanel (org.apache.jmeter.gui.OnErrorPanel)1