blob: 9aa29af021730a462be19f79b9c9a5ea46d16aa7 [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.macosx;
import org.eclipse.help.browser.*;
public class DefaultBrowserFactory implements IBrowserFactory {
public DefaultBrowserFactory() {
super();
}
/*
* @see IBrowserFactory#isAvailable()
*/
@Override
public boolean isAvailable() {
return System.getProperty("os.name").equals("Mac OS X"); //$NON-NLS-1$ //$NON-NLS-2$
/*
* we assume that every Mac OS X has an "/usr/bin/osascript" so we don't
* test any further
*/
}
/*
* @see IBrowserFactory#createBrowser()
*/
@Override
public IBrowser createBrowser() {
return DefaultBrowserAdapter.getInstance();
}
}