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

1.4.0 REGRESSION: JFileChooser Bug, can't change homeFolderToolTipText on Window

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.4.1
    • client-libs



      Name: jk109818 Date: 02/13/2003


      FULL PRODUCT VERSION :
      java version "1.4.1"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1-b21)
      Java HotSpot(TM) Client VM (build 1.4.1-b21, mixed mode)

      FULL OPERATING SYSTEM VERSION : Microsoft Windows 2000
      [Version 5.00.2195]


      EXTRA RELEVANT SYSTEM CONFIGURATION :
      Locale is Canadian-French

      A DESCRIPTION OF THE PROBLEM :
      I am trying to change the default tooltips of the buttons
      in the JFileChooser.

      I am overriding the values in UIManager but the tooltip
      isn't updated on the Home button.

      It works for all the other buttons except this one.

      When I change the button's icon I use this
      String : "FileChooser.homeFolderIcon".
      So when I want to change the tooltip I expect this String
      to be the right UIManager
      key : "FileChooser.homeFolderToolTipText".

      I might not be using the right key though, because when I
      retrieve the value of this key I get this : "Répertoire
      d'accueil", but the tooltip shown on the home button
      is "Bureau" !

      So it might be a bug in my code but if it is, I think the
      keys in UIManager should be more consistent.






      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      1. Change this value in
      UIManager : "FileChooser.homeFolderToolTipText"
      2.Open a JFileChooser
      3.Check to tooltip text of the Home button

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      If the key name were consistent the tooltip of the home
      button should be overriden

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import java.awt.FlowLayout;
      import java.awt.event.*;
      import javax.swing.*;

      public class TestBugUIManager extends JFrame
      {
        private JButton mBtn;

        public TestBugUIManager()
        {
          this.getContentPane().setLayout( new FlowLayout() );
          mBtn = new JButton("test");
          mBtn.addActionListener( new ActionListener()
          {
            public void actionPerformed( ActionEvent ae )
            {
              JFileChooser lFile = new JFileChooser();
              lFile.showOpenDialog( null );
            }
          }
          );
          this.getContentPane().add( mBtn );
          this.setSize( 300,200 );
          this.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
          this.setVisible(true);
        }

        public static void main( String args[] )
        {
          System.out.println( UIManager.get("FileChooser.homeFolderToolTipText"));
          UIManager.put("FileChooser.homeFolderToolTipText", "My new String" );
          new TestBugUIManager();
        }

      }
      ---------- END SOURCE ----------

      Release Regression From : 1.3.1_06
      The above release value was the last known release where this
      bug was known to work. Since then there has been a regression.

      (Review ID: 180433)
      ======================================================================

            leifs Leif Samuelsson (Inactive)
            jkimsunw Jeffrey Kim (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: