Package com.andrewnatoli.jbug.controlpanel.uicomponents

Examples of com.andrewnatoli.jbug.controlpanel.uicomponents.ProjectListTable


        //Add the logo
        logo = new JLabel(new ImageIcon("controlpanellogo.png"));
        sidePanel.add(logo,BorderLayout.NORTH);

        //Add the projects table
        projectsTable = new ProjectListTable();
        table   = new JTable(projectsTable);
        table.setPreferredScrollableViewportSize(new Dimension(200, 200));
        table.setFillsViewportHeight(true);
        table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        JScrollPane tableOverflow = new JScrollPane(table);
View Full Code Here

TOP

Related Classes of com.andrewnatoli.jbug.controlpanel.uicomponents.ProjectListTable

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.