>
> I want to bring up the application but not let it take focus. Is
> there any way to do this?
>
The following worked for me.
...
setVisible(true);
// activateWindow(); // Was taking focus.
showNormal();
raise();