Package ghidra.util
Class BrowserLoader
- java.lang.Object
-
- ghidra.util.BrowserLoader
-
public class BrowserLoader extends java.lang.ObjectBrowserLoader opens a web browser and displays the given url.- See Also:
ManualViewerCommandWrappedOption
-
-
Constructor Summary
Constructors Constructor Description BrowserLoader()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voiddisplay(java.net.URL url)Display the content specified by url in a web browser window.static voiddisplay(java.net.URL url, java.net.URL fileURL, ServiceProvider serviceProvider)Display the content specified by url in a web browser window.
-
-
-
Method Detail
-
display
public static void display(java.net.URL url)
Display the content specified by url in a web browser window. This call will launch a new thread and then immediately return.- Parameters:
url- The URL to show.
-
display
public static void display(java.net.URL url, java.net.URL fileURL, ServiceProvider serviceProvider)Display the content specified by url in a web browser window. This call will launch a new thread and then immediately return.- Parameters:
url- The web URL to show (e.g., http://localhost...).fileURL- The file URL to show (e.g., file:///path/to/file).serviceProvider- A service provider from which to get system resources.
-
-