Package ghidra.util

Class BrowserLoader

    • Constructor Summary

      Constructors 
      Constructor Description
      BrowserLoader()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void display​(java.net.URL url)
      Display the content specified by url in a web browser window.
      static void display​(java.net.URL url, java.net.URL fileURL, ServiceProvider serviceProvider)
      Display the content specified by url in a web browser window.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BrowserLoader

        public BrowserLoader()
    • 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.