Package org.apache.uima.tools.util.gui
Class FileChooserBugWorkarounds
- java.lang.Object
-
- org.apache.uima.tools.util.gui.FileChooserBugWorkarounds
-
public class FileChooserBugWorkarounds extends java.lang.Object
Workarounds for JFileChooser bugs on Windows Look and Feel. For a workaround for Java bug #4711700 ( http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4711700), Callfix()
after setting Windows look and feel but before creating any file choosers.To workaround intermittent exceptions thrown by JFileChooser.setCurrentDirectory() when it is called during initialization of your app, call the
setCurrentDirectory(JFileChooser, File)
method on this class rather than using the JFileChooser directly. This will use SwingUtilities.invokeLater to put the request on the event thread so it will not be executed until the event thread starts, thus avoiding the race condition hat otherwise occurs.
-
-
Constructor Summary
Constructors Constructor Description FileChooserBugWorkarounds()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
fix()
For workaround, call this method after setting Window look and feel but before creating any file choosers.static void
setCurrentDirectory(javax.swing.JFileChooser aFileChooser, java.io.File aDir)
Call this to set the current directory of a JFileChooser, instead of using aFileChooser.setCurrentDirectory(aDir) directly.
-
-
-
Method Detail
-
fix
public static void fix()
For workaround, call this method after setting Window look and feel but before creating any file choosers.
-
setCurrentDirectory
public static void setCurrentDirectory(javax.swing.JFileChooser aFileChooser, java.io.File aDir)
Call this to set the current directory of a JFileChooser, instead of using aFileChooser.setCurrentDirectory(aDir) directly.- Parameters:
aFileChooser
- the JFileChooser on which to set the current directoryaDir
- the directory to set
-
-