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());
JPanel panel2 = new JPanel(new BorderLayout());
JPanel panel3 = new JPanel(new BorderLayout());
panel1.add(txtPath1, BorderLayout.CENTER);
panel1.add(btnBrowse1, BorderLayout.EAST);