Package pdfdb.gui.preferencepanes

Examples of pdfdb.gui.preferencepanes.BottomPane


    private void init(String searchLocation, boolean savePswd, String servicesLocation)
    {
        ActionListener a = EventController.getActionListener();
        Container contentPane = super.getContentPane();
        JTabbedPane tabbedPane = new JTabbedPane();
        BottomPane bottomPane = new BottomPane();
        String cmd1 = String.valueOf(EventController.OP_PREFS_CONFIRM);
        String cmd2 = String.valueOf(EventController.OP_PREFS_CANCEL);
        bottomPane.getApproveButton().setActionCommand(cmd1);
        bottomPane.getRejectButton().setActionCommand(cmd2);
        bottomPane.getApproveButton().addActionListener(a);
        bottomPane.getRejectButton().addActionListener(a);

        this.generalPane = new GeneralPane(searchLocation);
        this.securityPane = new SecurityPane(savePswd);
        this.advancedPane = new AdvancedPane(servicesLocation);
View Full Code Here

TOP

Related Classes of pdfdb.gui.preferencepanes.BottomPane

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.