Name: aaC67449 Date: 07/22/99
JFileChooser.MULTI_SELECTION_ENABLED_CHANGED_PROPERTY field's value was changed
form "fileFilterChanged" to "MultiSelectionEnabledChangedProperty".
This is incompatible change and old value should be restored.
See example.
------------- example --------------
import javax.swing.JFileChooser;
public class Test {
public static void main(String argv[]) {
System.out.println(""
+JFileChooser.MULTI_SELECTION_ENABLED_CHANGED_PROPERTY);
}
}
------------- JDK1.3L output ---------------
Warning: JIT compiler "sunwjit" not found. Will use interpreter.
MultiSelectionEnabledChangedProperty
------------- JDK1.3L output ---------------
fileFilterChanged
======================================================================