When you set up an eclipse plugin preference page, is it possible to add some sort of text or a separator line between the FieldEditors?
@Override
protected void createFieldEditors() {
addField( new SomeFieldEditor(....));
addField( new SomeFieldEditor(....));
}
You can use something like:
to add a blank like, or
to add a horizontal separator.
This assumes you are using the
GRID
layout. You might have to adjust the '3' in theGridData
depending on how many columns the field editor end up using.