Package org.eclipse.ui.part
Class PageBookView.PageRec
- java.lang.Object
-
- org.eclipse.ui.part.PageBookView.PageRec
-
- Enclosing class:
- PageBookView
protected static class PageBookView.PageRec extends Object
A data structure used to store the information about a single page within a pagebook view.
-
-
Field Summary
Fields Modifier and Type Field Description IPage
page
The page.IWorkbenchPart
part
The part.SubActionBars
subActionBars
The page's action bars
-
Constructor Summary
Constructors Constructor Description PageRec(IWorkbenchPart part, IPage page)
Creates a new page record initialized to the given part and page.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
dispose()
Disposes of this page record bynull
ing its fields.
-
-
-
Field Detail
-
part
public IWorkbenchPart part
The part.
-
page
public IPage page
The page.
-
subActionBars
public SubActionBars subActionBars
The page's action bars
-
-
Constructor Detail
-
PageRec
public PageRec(IWorkbenchPart part, IPage page)
Creates a new page record initialized to the given part and page.- Parameters:
part
- the partpage
- the page
-
-