List of usage examples for javax.swing JFrame isShowing
public boolean isShowing()
From source file:Main.java
/** * @return Returns <code>true</code> if the frame is visible, showing and not * iconified./* w w w .j a v a 2s . c o m*/ */ public static boolean isVisibleNotMinimized(JFrame frame) { assertEventDispatcherThread(); return (frame.isVisible() && frame.isShowing() && (frame.getExtendedState() & JFrame.ICONIFIED) == 0); }