Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help.base/src/org/eclipse/help/browser/IBrowser.java')
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/browser/IBrowser.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/browser/IBrowser.java b/org.eclipse.help.base/src/org/eclipse/help/browser/IBrowser.java
index a52f6e589..efdbaa352 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/browser/IBrowser.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/browser/IBrowser.java
@@ -12,7 +12,7 @@ package org.eclipse.help.browser;
/**
* Represents a web browser that can be used by clients to display documents for
* the given URLs.
- *
+ *
* @since 2.1
*/
public interface IBrowser {
@@ -22,27 +22,27 @@ public interface IBrowser {
public void close();
/**
* Queries the browser if close method is supported.
- *
+ *
* @return true if the method is fully implemented
*/
public boolean isCloseSupported();
/**
* Displays document with the given URL, and makes the browser visible. This
* method starts the browser if necessary.
- *
+ *
* @param url
* the URL to display in the browser
*/
public void displayURL(String url) throws Exception;
/**
* Queries the browser if setLocation method is supported.
- *
+ *
* @return true if the method is fully implemented
*/
public boolean isSetLocationSupported();
/**
* Queries the browser if setSize method is supported.
- *
+ *
* @return true if the method is fully implemented
*/
public boolean isSetSizeSupported();
@@ -50,7 +50,7 @@ public interface IBrowser {
* 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
- *
+ *
* @param x
* horizontal coordinates of the left-top external corner
* @param y
@@ -61,7 +61,7 @@ public interface IBrowser {
* 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.
- *
+ *
* @param width
* width in pixels
* @param height

Back to the top