Package org.eclipse.jface.dialogs
Class DialogTray
java.lang.Object
org.eclipse.jface.dialogs.DialogTray
This class is the abstract superclass of all dialog trays. A tray can be opened
in any TrayDialog
.
- Since:
- 3.2
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected abstract Control
createContents
(Composite parent) Creates the contents (widgets) that will be contained in the tray.
-
Constructor Details
-
DialogTray
public DialogTray()
-
-
Method Details
-
createContents
Creates the contents (widgets) that will be contained in the tray.Tray implementions must not set a layout on the parent composite, or assume a particular layout on the parent. The tray dialog will allocate space according to the natural size of the tray, and will fill the tray area with the tray's contents.
- Parameters:
parent
- the composite that will contain the tray- Returns:
- the contents of the tray, as a
Control
-