Package charvax.swing.table

Examples of charvax.swing.table.TableHeader


         * contents of the table are displayed in the bottom viewport and
         * scroll in all directions.
         */
        if (component_ instanceof JTable) {
            JTable table = (JTable) component_;
            TableHeader header = new TableHeader(table.getModel());
            _headerViewport = new JViewport();
            _headerViewport.setView(header);
            add(_headerViewport);
            _headerViewport.setParent(this);

View Full Code Here

TOP

Related Classes of charvax.swing.table.TableHeader

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.