-
Type:
Bug
-
Status: Open
-
Priority:
P4
-
Resolution: Unresolved
-
Affects Version/s: 5.0u9
-
Fix Version/s: tbd
-
Component/s: client-libs
-
Labels:
-
Subcomponent:
-
Understanding:Cause Known
-
CPU:x86
-
OS:windows_xp
isFileHidingEnabled() return false by default:
import javax.swing.*;
public class JFileChooserTester{
public static void main(String[] args){
JFileChooser jfc = new JFileChooser();
System.out.println(jfc.isFileHidingEnabled());
}}
The code above returns false on WinXP Home stt-08.russia, according to specification should be true
Reproducible with
JDK5.0 and JDK6.0
OS: Windows XP Home Edition
import javax.swing.*;
public class JFileChooserTester{
public static void main(String[] args){
JFileChooser jfc = new JFileChooser();
System.out.println(jfc.isFileHidingEnabled());
}}
The code above returns false on WinXP Home stt-08.russia, according to specification should be true
Reproducible with
JDK5.0 and JDK6.0
OS: Windows XP Home Edition