jTracer  1.03
Stack trace visualization tool
void org.libcsdbg.jtracer.Registry.browse ( URL  url)

Open a URL on the registered web browser.

Parameters
[in]urlthe URL to redirect to

Definition at line 245 of file Registry.java.

References org.libcsdbg.jtracer.Registry.debug().

246  {
247  try {
248  String browser = (String) get("generic", "browser");
249  ProcessBuilder proc = new ProcessBuilder(browser, url.toString());
250  proc.start();
251  }
252 
253  catch (Throwable t) {
254  debug(t);
255  }
256  }
static synchronized void debug(Throwable err)
Output debug text for an exception.
Definition: Registry.java:398

+ Here is the call graph for this function: