-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.4.1
-
x86
-
windows_2000
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)
======================================================================
- duplicates
-
JDK-4712086 JFileChooser: Home button inconsistencies in Metal Look and Feel
-
- Closed
-