m_suiteMethodCombo = new Combo(group2, SWT.READ_ONLY);
m_suiteMethodCombo.add("Remove");
m_suiteMethodCombo.add("Comment out");
m_suiteMethodCombo.add("Don't touch");
SuiteMethodTreatment lastValue = TestNGPlugin.getPluginPreferenceStore().getSuiteMethodTreatement();
m_suiteMethodCombo.select(lastValue.ordinal());
m_suiteMethodCombo.addSelectionListener(new SelectionListener() {
public void widgetSelected(SelectionEvent e) {
TestNGPlugin.getPluginPreferenceStore().storeSuiteMethodTreatement(
m_suiteMethodCombo.getSelectionIndex());