Package edu.brown.gui.stats

Examples of edu.brown.gui.stats.TableListPanel$TableModel


        } // FOR
       
        //
        // BOTTOM: Table Selection
        //
        final TableListPanel tableSelectionPanel = new TableListPanel();
        tableSelectionPanel.getSelectionModel().addListSelectionListener(new ListSelectionListener() {
            @Override
            public void valueChanged(ListSelectionEvent e) {
                String table_key = tableSelectionPanel.getSelectedTable();
                updateTableStatsPanel(table_key);
            }
        });
        tableSelectionPanel.setTables(args.catalog_db.getTables());
       
        this.tableStatsWrapperPanel = new JPanel(new BorderLayout());
        this.tableStatsWrapperPanel.add(firstPanel, BorderLayout.CENTER);
        JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, this.tableStatsWrapperPanel, tableSelectionPanel);
        splitPane.setDividerLocation(500);
        tableSelectionPanel.getSelectionModel().setSelectionInterval(0, 0);

        // ----------------------------------------------
        // TABBED PANE
        // ----------------------------------------------
        JTabbedPane tabbedPane = new JTabbedPane();
View Full Code Here

TOP

Related Classes of edu.brown.gui.stats.TableListPanel$TableModel

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.