Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4394642

JPopupMenu should implement isShowing() method

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P4 P4
    • 7
    • 1.3.0, 5.0
    • client-libs
    • x86, sparc
    • solaris_7, windows_xp

      We are working on GUI testing of Forte for Java by Jemmy (GUI testing tool, see http://techpubs.Eng.Sun.COM:80/net/ultrapuma/export/ultrapuma4/jemmypages/ if you are interested). We found out that there can exist JPopupMenu which has isShowing()==true, isVisible()==false, popup==null.
      I think this is the state in which no component should stay because javadoc of Component.isShowing() says:

          /**
           * 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.
           */

      I guess isShowing() method should be implemented in JPopupMenu class such way as isVisible() method, i.e.

          public boolean isShowing() {
              if(popup != null)
                  return true;
              else
                  return false;
          }
          
      Then our tests will find the correct popup-menu.

            alexp Alexander Potochkin (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: