final Composite p = getFieldEditorParent();
addField(new BooleanFieldEditor(USE_PYLINT, "Use pylint?", p));
addField(new BooleanFieldEditor(USE_CONSOLE, "Redirect PyLint output to console?", p));
addField(new IntegerFieldEditor(MAX_PYLINT_DELTA, "Max simultaneous processes for PyLint?", p));
FileFieldEditor fileField = new FileFieldEditor(PYLINT_FILE_LOCATION, "Location of pylint (lint.py):", true, p);
addField(fileField);
addField(new RadioGroupFieldEditor(SEVERITY_FATAL, "FATAL Severity", COLS, LABEL_AND_VALUE, p, true));
addField(new RadioGroupFieldEditor(SEVERITY_ERRORS, "ERRORS Severity", COLS, LABEL_AND_VALUE, p, true));