Package com.sardak.antform.types

Examples of com.sardak.antform.types.Table


    e.printStackTrace();
  }
 
  Control control = new Control(new CallbackTest(), "Table test", null, null, false);
  ControlPanel panel = control.getPanel();
  Table t = new Table();
  t.setLabel("a table");
  t.setProperty("prop");
  t.setEditable(true);
  t.setColumns("col1,col2,col3");
  t.setData("d1,d2,d3;d1,d2,d3;d1,d2,d3");
  t.setRowSeparator(";");
  t.setColumnSeparator(",");
  t.setEscapeSequence("\\");
  t.addToControlPanel(panel);
  control.show();
  System.exit(0);
}
View Full Code Here

TOP

Related Classes of com.sardak.antform.types.Table

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.