Searched refs:jfc (Results 1 – 2 of 2) sorted by relevance
50 private JFileChooser jfc; field in UI213 if (jfc == null) { in showSaveDialog()214 jfc = new JFileChooser(); in showSaveDialog()217 int ret = jfc.showSaveDialog(this); in showSaveDialog()219 return jfc.getSelectedFile(); in showSaveDialog()238 if (jfc == null) { in showOpenDialog()239 jfc = new JFileChooser(); in showOpenDialog()242 jfc.setMultiSelectionEnabled(multi); in showOpenDialog()243 int ret = jfc.showOpenDialog(this); in showOpenDialog()245 return jfc.getSelectedFiles(); in showOpenDialog()
95 JFileChooser jfc = new JFileChooser(); in run() local96 int ret2 = jfc.showSaveDialog(Main.getUI()); in run()98 File f = jfc.getSelectedFile(); in run()