This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Shell
jpeterka edited this page Sep 20, 2013
·
5 revisions
- Shell / AbstractButton
- DefaultShell
- WorkbenchShell
- QuickFixDialog extends DefaultShell
Usually any shell Lookup for a shell with title "Preferences"
Shell b = new DefaultShell("Preferences");
Main Eclipse Workbench Shell Get title text of workbench Shell
Shell wbs = new WorkbenchShell();
String titleText = wbs.getText();
Quick fix dialog obtained by invoking quick fix in Eclipse editor Select first quick fix in QuickFixDialog
QuickFixDialog qfd = new QuickFixDialog();
qfd.selectFix(0);