blob: ba87f7ff2f37c3f06f15726e8a57a4224dd58e3d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.help.internal.browser;
import org.eclipse.help.browser.*;
/**
* Produces Custom Browser
*/
public class CustomBrowserFactory implements IBrowserFactory {
/**
* @see org.eclipse.help.browser.IBrowserFactory#isAvailable()
*/
@Override
public boolean isAvailable() {
return true;
}
/**
* @see org.eclipse.help.browser.IBrowserFactory#createBrowser()
*/
@Override
public IBrowser createBrowser() {
return new CustomBrowser();
}
}