Package org.eclipse.help.browser
Interface IBrowser
public interface IBrowser
Represents a web browser that can be used by clients to display documents for
 the given URLs.
- Since:
- 2.1
- 
Method SummaryModifier and TypeMethodDescriptionvoidclose()Closes the browser.voiddisplayURL(String url) Displays document with the given URL, and makes the browser visible.booleanQueries the browser if close method is supported.booleanQueries the browser if setLocation method is supported.booleanQueries the browser if setSize method is supported.voidsetLocation(int x, int y) Causes the browser to be moved to the specified location.voidsetSize(int width, int height) Causes the browser to be resized to the specified size.
- 
Method Details- 
closevoid close()Closes the browser.
- 
isCloseSupportedboolean isCloseSupported()Queries the browser if close method is supported.- Returns:
- true if the method is fully implemented
 
- 
displayURLDisplays document with the given URL, and makes the browser visible. This method starts the browser if necessary.- Parameters:
- url- the URL to display in the browser
- Throws:
- Exception
 
- 
isSetLocationSupportedboolean isSetLocationSupported()Queries the browser if setLocation method is supported.- Returns:
- true if the method is fully implemented
 
- 
isSetSizeSupportedboolean isSetSizeSupported()Queries the browser if setSize method is supported.- Returns:
- true if the method is fully implemented
 
- 
setLocationvoid setLocation(int x, int y) Causes the browser to be moved to the specified location. If the actual browser is not visible, the next time it becomes visible, it will be shown at the give location- Parameters:
- x- horizontal coordinates of the left-top external corner
- y- vertical coordinates of the left-top external corner
 
- 
setSizevoid setSize(int width, int height) Causes the browser to be resized to the specified size. If the actual browser is not visible, the next time it becomes visible, it will be shown with the give size.- Parameters:
- width- width in pixels
- height- height in pixels external corner
 
 
-