Package pdfdb.gui.customcomponents

Examples of pdfdb.gui.customcomponents.BrowserMenu


    protected void initializeComponents()
    {
        JPanel pane = (JPanel) super.getContentPane();
       
        browser =new JEditorPane();
        menu = new BrowserMenu();
        history = new ArrayList<String>();
        JScrollPane scrollPane = new JScrollPane(browser);
        Dimension dim = new Dimension(700, 400);
        Dimension minDim = new Dimension(400, 400);
        String backCmd = String.valueOf(EventController.OP_HELP_BACK);
View Full Code Here

TOP

Related Classes of pdfdb.gui.customcomponents.BrowserMenu

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.