-
Notifications
You must be signed in to change notification settings - Fork 43
Shell
mlabuda edited this page Feb 14, 2014
·
5 revisions
- Shell / AbstractShell
- DefaultShell
- WorkbenchShell
- QuickFixDialog
Look up a shell with title "Preferences"
Shell preferencesShell = new DefaultShell("Preferences");
Look up a active shell
Shell activeShell = new DefaultShell();
Main Eclipse Workbench Shell
Get title text of workbench shell
Shell workbenchShell = new WorkbenchShell();
String titleText = workbenchShell.getText();
Quick fix dialog is opened from Eclipse editor. QuickFixDialog is descendant of DefaultShell.
Select first quick fix in QuickFixDialog
QuickFixDialog quickFixDialog = new QuickFixDialog();
quickFixDialog.selectFix(0);