Set title for JFace dialog

Veröffentlicht von

The following snippet sets the title for a JFace dialog:

@Override
protected void configureShell(Shell shell) {
    super.configureShell(shell);
    shell.setText("My Dialog Title");
}

However the following error might occur:

image

This can be resolved if you change the setting from “error” to “warning” in the Eclipse preferences.

image

Kommentar hinterlassen

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert