Interface IPage
- All Known Subinterfaces:
- IContentOutlinePage,- IPageBookViewPage,- IPropertySheetPage,- ISearchResultPage,- ITemplatesPage
- All Known Implementing Classes:
- AbstractTemplatesPage,- AbstractTextSearchViewPage,- CompareOutlinePage,- ContentOutlinePage,- HistoryPage,- MessagePage,- Page,- PropertySheetPage,- TabbedPropertySheetPage,- TextConsolePage
IPageBookViewPage but is
 preserved for backward compatibility.
 
 This class is not intended to be directly implemented by clients; clients
 should instead subclass Page.
 
- See Also:
- Restriction:
- This interface is not intended to be implemented by clients.
- 
Method SummaryModifier and TypeMethodDescriptionvoidcreateControl(Composite parent) Creates the SWT control for this page under the given parent control.voiddispose()Disposes of this page.Returns the SWT control for this page.voidsetActionBars(IActionBars actionBars) Allows the page to make contributions to the given action bars.voidsetFocus()Asks this page to take focus within its pagebook view.
- 
Method Details- 
createControlCreates the SWT control for this page under the given parent control.Clients should not call this method (the workbench calls this method when it needs to, which may be never). - Parameters:
- parent- the parent control
 
- 
disposevoid dispose()Disposes of this page.This is the last method called on the IPage. Implementors should clean up any resources associated with the page.Callers of this method should ensure that the page's control (if it exists) has been disposed before calling this method. However, for backward compatibilty, implementors must also ensure that the page's control has been disposed before this method returns. Note that there is no guarantee that createControl() has been called, so the control may never have been created. 
- 
getControlControl getControl()Returns the SWT control for this page.- Returns:
- the SWT control for this page, or nullif this page does not have a control
 
- 
setActionBarsAllows the page to make contributions to the given action bars. The contributions will be visible when the page is visible.This method is automatically called shortly after createControlis called- Parameters:
- actionBars- the action bars for this page
 
- 
setFocusvoid setFocus()Asks this page to take focus within its pagebook view.
 
-