JPanel cssJqueryActionPanel = new JPanel();
cssJqueryActionPanel.setLayout(g);
Border margin = new EmptyBorder(5, 5, 0, 5);
cssJqueryActionPanel.setBorder(margin);
cssJqueryField = new JLabeledTextField(JMeterUtils.getResString("cssjquery_tester_field")); // $NON-NLS-1$
cssJqueryField.setPreferredSize(new Dimension(300, 30));
c.fill = GridBagConstraints.HORIZONTAL;
c.gridx=0;
c.gridy=0;
cssJqueryActionPanel.add(cssJqueryField, c);
cssJqueryLabeledChoice = new JLabeledChoice(
JMeterUtils.getResString("cssjquery_impl"), // $NON-NLS-1$
getImplementations());
cssJqueryLabeledChoice.setPreferredSize(new Dimension(300, 30));
c.fill = GridBagConstraints.HORIZONTAL;
c.gridx=1;
c.gridy=0;
cssJqueryActionPanel.add(cssJqueryLabeledChoice, c);
attributeField = new JLabeledTextField(JMeterUtils.getResString("cssjquery_attribute")); // $NON-NLS-1$
attributeField.setPreferredSize(new Dimension(300, 30));
c.fill = GridBagConstraints.HORIZONTAL;
c.gridx=0;
c.gridy=1;
cssJqueryActionPanel.add(attributeField, c);