views:

64

answers:

1

The ff. does not work. "Second line" is rendered on the same line as "First line". What's more is that there is no space between the two.

new BooleanFieldEditor("Name", "First line\nSecond line", getFieldEditorParent());
+1  A: 

The BooleanFieldEditor uses an SWT Label. You can't specify multiple lines for this type of widget.

I would suggest that you will need to create a custom implementation by subclassing FieldEditor.

Two things to help with this:

Binary Nerd