Package org.eclipse.ui.browser
Class AbstractWebBrowser
java.lang.Object
org.eclipse.ui.browser.AbstractWebBrowser
- All Implemented Interfaces:
- IWebBrowser
Clients that supply implementation of the workbench browser support should
 extend this class for web browser instances they manage. Clients should not
 implement the 
IWebBrowser interface.- Since:
- 3.1
- 
Constructor SummaryConstructorsConstructorDescriptionThe constructor that accepts the unique browser identifier.
- 
Method SummaryMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.eclipse.ui.browser.IWebBrowseropenURL
- 
Constructor Details- 
AbstractWebBrowserThe constructor that accepts the unique browser identifier.- Parameters:
- id- the unique browser identifier
 
 
- 
- 
Method Details- 
getIdDescription copied from interface:IWebBrowserReturns the unique identifier of this browser. If an id has been supplied to the browser support when the instance was created, it will be used. Otherwise, a generated id will be provided to the browser that is guaranteed to be unique.- Specified by:
- getIdin interface- IWebBrowser
- Returns:
- a unique identifier of this browser instance
 
- 
closepublic boolean close()Description copied from interface:IWebBrowserCloses this browser instance.NOTE This method must be called from the current UI thread - Specified by:
- closein interface- IWebBrowser
- Returns:
- trueif the browser was closed or- falseif the operation failed or is not supported.
 
 
-