Search code examples
javaeclipsercpe4

ECLIPSE E4 RCP - PreferenceDialog()


I'm trying to create a PreferenceDialog() by the way when I set the PreferenceNode like the following example:

private PreferenceNode one = new PreferenceNode("one",
            new PrefPageOne());

the entry's label on the left-side is not shown at all. It's clickable but there's an empty descriptor.

Any hints?


Solution

  • Here the workaround/solution:

    public class page extends PreferencePage {
        public page(String title) {
            super(title);
        }