What's the difference between Component.isShowing() and Component.isDisplayable()? I want to use them to decide wheter I should stop/start a Timer.
|
|
|||||
|
|
A component
This means that your component is currently showing on the screen within a Frame, Panel, etc.
This means that your component is in a state where it can be shown on the screen but it don't need to be currently shown on the screen to be in a |
|||||||
|
|
As far as I understand Component.isShowing() returns true if the component is visible and Component.isDisplayable() returns true if the component is in displayable hierarchy and that means it can be displayed. I think methods names speak for them itself. |
|||
|
|
|
isDisplayable() returns true iff the component's peer is not null (the peer is the native window container). isShowing() returns true if the component is visible (i.e. setVisible(true) or show(true) was called), its peer is non-null, and if it also has a parent, the parent is also showing (i.e. isShowing() on the parent returns true). |
|||
|
|