Package com.aesthete.swingobjects.ui.common.table

Examples of com.aesthete.swingobjects.ui.common.table.Column


public class Test {

  public static void main(String[] args) {
    SwingObjectsTable table=new SwingObjectsTable();
    table.setColumns(new Column[] {
        new Column("string", String.class, false),
        new Column("int",Integer.class,false)});
    table.initTable();
    CsmartTableHelper helper=new CsmartTableHelper();
    helper.addRow("1342134",1);
    table.setData(helper.getRows());
    final JFrame frame=new JFrame();
View Full Code Here

TOP

Related Classes of com.aesthete.swingobjects.ui.common.table.Column

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.