Package org.bmdrc.gui.listeners

Examples of org.bmdrc.gui.listeners.MassMatcherDeleteButtonActionListener


    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;
    }
View Full Code Here

TOP

Related Classes of org.bmdrc.gui.listeners.MassMatcherDeleteButtonActionListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.