use of org.apache.jorphan.gui.layout.VerticalLayout in project jmeter by apache.
the class TransactionControllerGui method init.
/**
* Initialize the GUI components and layout for this component.
*/
private void init() {
// WARNING: called from ctor so must not be overridden (i.e. must be private or final)
setLayout(new VerticalLayout(5, VerticalLayout.BOTH, VerticalLayout.TOP));
setBorder(makeBorder());
add(makeTitlePanel());
// $NON-NLS-1$
generateParentSample = new JCheckBox(JMeterUtils.getResString("transaction_controller_parent"));
add(CheckBoxPanel.wrap(generateParentSample));
// $NON-NLS-1$
includeTimers = new JCheckBox(JMeterUtils.getResString("transaction_controller_include_timers"), true);
add(CheckBoxPanel.wrap(includeTimers));
}
Aggregations