static JComponent filePathInputWithBrowseButton(JTextField tf) { ret centerAndEastWithMargin(tf, jbutton("Browse...", r { JFileChooser fileChooser = new JFileChooser(getTextTrim(tf)); if (fileChooser.showOpenDialog(tf) == JFileChooser.APPROVE_OPTION) tfPath.setText(fileChooser.getSelectedFile().getAbsolutePath()); })); }