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

Open a URL on the registered mail composer.

Parameters
[in]urlthe mailto URL

Definition at line 264 of file Registry.java.

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

Referenced by org.libcsdbg.jtracer.AboutDialog.hyperlinkUpdate().

265  {
266  try {
267  String mailer = (String) get("generic", "mailer");
268  ProcessBuilder proc = new ProcessBuilder(mailer, url.toString());
269  proc.start();
270  }
271 
272  catch (Throwable t) {
273  debug(t);
274  }
275  }
static synchronized void debug(Throwable err)
Output debug text for an exception.
Definition: Registry.java:398

+ Here is the call graph for this function:

+ Here is the caller graph for this function: