Package gov.nasa.arc.mct.gui.table

Examples of gov.nasa.arc.mct.gui.table.AlternateRowColorTable


   
    public UsersPage(String discipline) {
        this.discipline = discipline;
        tableModel = new DefaultTableModel(new String[]{USER_ID, GROUP_ID, PRIM_ROLE}, 0);
        refresh();
        JTable table = new AlternateRowColorTable();
        table.setModel(tableModel);
        setLayout(new GridLayout(1, 1));
        add(new JScrollPane(table));       
    }
View Full Code Here

TOP

Related Classes of gov.nasa.arc.mct.gui.table.AlternateRowColorTable

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.