| org.eclipse.ui.part.DrillDownComposite
DrillDownComposite | public class DrillDownComposite extends Composite (Code) | | Class DrillDownComposite implements a simple web
style navigation metaphor. Home, back, and "drill into" buttons are
added to a tree viewer for easier navigation.
To use the DrillDownComposite..
- Create an instance of
DrillDownComposite .
- Create a tree viewer.
- Pass the second tree viewer into the composite by
calling
setChildTree .
|
Constructor Summary | |
public | DrillDownComposite(Composite parent, int style) Constructs a new DrillDownTreeViewer. |
DrillDownComposite | public DrillDownComposite(Composite parent, int style)(Code) | | Constructs a new DrillDownTreeViewer.
Parameters: parent - the parent composite for this control Parameters: style - the SWT style for this control |
createNavigationButtons | protected void createNavigationButtons()(Code) | | Creates the navigation buttons for this viewer.
|
setChildTree | public void setChildTree(TreeViewer aViewer)(Code) | | Sets the child viewer. This method should only be called once, after the
viewer has been created.
Parameters: aViewer - the new child viewer |
|
|