Gets a file chooser. @return the chooser
()
| 1044 | * @return the chooser |
| 1045 | */ |
| 1046 | protected static JFileChooser getChooser() { |
| 1047 | if(chooser==null) { |
| 1048 | chooser = new JFileChooser(new File(OSPRuntime.chooserDir)); |
| 1049 | } |
| 1050 | FontSizer.setFonts(chooser); |
| 1051 | return chooser; |
| 1052 | } |
| 1053 | |
| 1054 | /** |
| 1055 | * Reads a file. |