forked from eclipse-archived/reddeer
-
Notifications
You must be signed in to change notification settings - Fork 1
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");
### WorkbenchShell
Main Eclipse Workbench Shell
**Get title text of workbench Shell**
```java
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);JBoss Red Deer - Quick Links
- Home
- [Release notes] (/jboss-reddeer/reddeer/wiki/Release-notes)
- Articles
- JavaDoc
- User guide
- Contributor Guide
- FAQ