temp = new JPanel(new GridLayout(3,1));
temp.setBorder(BorderFactory.createTitledBorder(Resources.getString("userDefinedClasses")));
// add the Parser Class edit field
temp.add(parserClassName = new EComboBox());
parserClassName.setEditable(true);
// add the TestFinder Class edit field
temp.add(testfinderClassName = new EComboBox());
testfinderClassName.setEditable(true);
// add the Plugin Class edit field
JPanel tmp2 = new JPanel(new GridLayout(1,2));
tmp2.add(new JLabel(Resources.getString("pluginClassName"),SwingConstants.CENTER));
tmp2.add(pluginClassNames = new EComboBox());
pluginClassNames.setEditable(true);
temp.add(tmp2);
centerPanel.add(temp);
// add the miscOptions pane