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

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



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();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setContentPane(new JScrollPane(table));
    SwingUtilities.invokeLater(new Runnable() {
      public void run() {
View Full Code Here

TOP

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

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.