Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What's the difference between Component.isShowing() and Component.isDisplayable()? I want to use them to decide wheter I should stop/start a Timer.

share|improve this question
which part exactly of the api doc don't you understand? – kleopatra Aug 15 '12 at 12:27
you can't show JComponent couldn't be Displayable – mKorbel Aug 16 '12 at 8:04

3 Answers

up vote 2 down vote accepted

A component
isShowing() when

Determines whether this component is showing on screen. This means that the component must be visible, and it must be in a container that is visible and showing.

This means that your component is currently showing on the screen within a Frame, Panel, etc.
setVisible(true) --> isShowing() returns true (in most cases)
setVisible(false) --> isShowing() returns false (in most cases)

isDisplayable() when

Determines whether this component is displayable. A component is displayable when it is connected to a native screen resource.

A component is made displayable either when it is added to a displayable containment hierarchy or when its containment hierarchy is made displayable. A containment hierarchy is made displayable when its ancestor window is either packed or made visible.

A component is made undisplayable either when it is removed from a displayable containment hierarchy or when its containment hierarchy is made undisplayable. A containment hierarchy is made undisplayable when its ancestor window is disposed.

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 displayable-state, so i.e. even if setVisible(false) was called on the component before (so the component is "invisible") the component is still displayable and isDisplayable() will return true.

share|improve this answer
So, if I want to check if the Component is actually visible for the user, I can use isShowing()? Or is it possible that isShowing() returns true and isDisplayable() returns false? – keuleJ Aug 15 '12 at 12:41
no .. you just need to check isShowing() ... isVisible() will also work ... isShowing() will never return true when isDisplayable() returns false – Pr0gr4mm3r Aug 15 '12 at 12:44
Well isVisible() could return true even if isDisplayable() would return false and the Component is not in a containment hierarchy anymore... I'll go with isShowing() then. Thanks! – keuleJ Aug 15 '12 at 21:12

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.

share|improve this answer

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).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.