JFrame frame = new JFrame ();
frame.setAlwaysOnTop (true);
If you want the frame to always be focused, you probably have to use a modal dialog instead of a JFrame:
JDialog dialog = new JDialog ();
dialog.setModal (true);
dialog.setAlwaysOnTop (true);
dialog.setModalityType (ModalityType.APPLICATION_MODAL);
source
share