* LinkListener from a new thread.
*/
public void startUp() {
// Have to use a swing worker so that the calling thread
// doesn't get hung up on launching the runnable.
SwingWorker sw = new SwingWorker() {
public Object construct() {
if (Debug.debugging("link")) {
Debug.output("LinkListener self-starting...");
}
getListener().start();
return null;
}
};
sw.execute();
}