public static Box generateInputBox(MainFrame theFrame) {
Box theInputBox = theFrame.generateInputBox(new JLabel("Input DB Dir : "), new JTextField(20), new JButton("select"));
JButton theDeleteButton = new JButton("Delete");
theDeleteButton.addActionListener(new MassMatcherDeleteButtonActionListener(theFrame, theFrame.getFilePathTextFieldList().size()));
theInputBox.setName(Integer.toString(theFrame.getFilePathTextFieldList().size()));
theInputBox.add(theDeleteButton);
return theInputBox;
}