| org.eclipse.ui.IViewReference
All known Subclasses: org.eclipse.ui.internal.ViewReference,
IViewReference | public interface IViewReference extends IWorkbenchPartReference(Code) | | Defines a reference to an IViewPart.
This interface is not intended to be implemented by clients.
|
Method Summary | |
public String | getSecondaryId() Returns the secondary ID for the view. | public IViewPart | getView(boolean restore) Returns the IViewPart referenced by this object.
Returns null if the view was not instantiated or
it failed to be restored. | public boolean | isFastView() Returns true if the view is a fast view otherwise returns false. |
getView | public IViewPart getView(boolean restore)(Code) | | Returns the IViewPart referenced by this object.
Returns null if the view was not instantiated or
it failed to be restored. Tries to restore the view
if restore is true.
|
isFastView | public boolean isFastView()(Code) | | Returns true if the view is a fast view otherwise returns false.
|
|
|