Package weka.gui
Class BrowserHelper
- java.lang.Object
-
- weka.gui.BrowserHelper
-
public class BrowserHelper extends java.lang.Object
A little helper class for browser related stuff. TheopenURL
method is based on Bare Bones Browser Launch, which is placed in the public domain.- Version:
- $Revision: 7059 $
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String[]
LINUX_BROWSERS
Linux/Unix binaries to look for
-
Constructor Summary
Constructors Constructor Description BrowserHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
openURL(java.awt.Component parent, java.lang.String url)
opens the URL in a browser.static void
openURL(java.awt.Component parent, java.lang.String url, boolean showDialog)
opens the URL in a browser.static void
openURL(java.lang.String url)
opens the URL in a browser.
-
-
-
Method Detail
-
openURL
public static void openURL(java.lang.String url)
opens the URL in a browser.- Parameters:
url
- the URL to open
-
openURL
public static void openURL(java.awt.Component parent, java.lang.String url)
opens the URL in a browser.- Parameters:
parent
- the parent componenturl
- the URL to open
-
openURL
public static void openURL(java.awt.Component parent, java.lang.String url, boolean showDialog)
opens the URL in a browser.- Parameters:
parent
- the parent componenturl
- the URL to openshowDialog
- whether to display a dialog in case of an error or just print the error to the console
-
-