Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a666e7b7f6a8f7e11c559865b749becfead90fed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * (c) Copyright IBM Corp. 2000, 2002.
 * All Rights Reserved.
 */
package org.eclipse.help.ui.browser;
/**
 * Implementators of org.eclipse.help.ui.browsers
 * extension points must provide implementation of this
 * interface.
 * @deprecated Use the org.eclipse.help.browser.IBrowserFactory instead.
 */
public interface IBrowserFactory {
	/**
	 * Checks whether the factory can work on the user system.
	 * @return false if the factory cannot work on this system;
	 * for example the required native browser required
	 * by browser adapters that it creates is not installed.
	 */
	public boolean isAvailable();
	/**
	 * Obtains a new instance of a web browser.
	 * @return instance of IBrowser
	 */
	public IBrowser createBrowser();
}

Back to the top