perhaps what you can do is change the frame icon image every second or so to give the blinking effect.
jframe.setIconImage(darkImage);
and on the next iteration:
jframe.setIconImage(lightImage);
you can just have a separate thread to do the image switching. if there are thread safety problems, you may have to use SwingUtilities.invokeLater(...).