Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
jpeterka edited this page Sep 20, 2013 · 5 revisions

API / Abstract

  • Shell / AbstractButton

Implementation(s)

  • DefaultShell
  • WorkbenchShell

Usage

DefaultShell

Lookup for a shell with title "Preferences"

Shell b = new DefaultShell("Preferences");

### WorkbenchShell
**Get title text of workbench Shell**
```java
Shell wbs = new WorkbenchShell();
String titleText = wbs.getText();
Clone this wiki locally