txtPath2 = new JTextField(Parameter.path_program_formatdb);
txtPath3 = new JTextField(Parameter.temp_path);
btnBrowse1 = new JButton(UICaption.dialog_caption_browse);
btnBrowse2 = new JButton(UICaption.dialog_caption_browse);
btnBrowse3 = new JButton(UICaption.dialog_caption_browse);
btnBrowse1.addActionListener(new BrowseEnsureAction(txtPath1, "blastall"));
btnBrowse2.addActionListener(new BrowseEnsureAction(txtPath2, "formatdb"));
btnBrowse3.addActionListener(new BrowseAction(txtPath3, true));
txtPath1.getDocument().addDocumentListener(new EditAction(blast_path));
txtPath2.getDocument().addDocumentListener(new EditAction(formatdb_path));
txtPath3.getDocument().addDocumentListener(new EditAction(temp_path));
JPanel panel1 = new JPanel(new BorderLayout());