001package bradleyross.library.helpers.tests; 002import bradleyross.library.helpers.WebTable; 003import bradleyross.library.helpers.GenericPrinter; 004public class TestWebTable extends WebTable 005{ 006 public static void main (String args[]) 007 { 008 TestWebTable instance = new TestWebTable(); 009 GenericPrinter out = new GenericPrinter(System.out); 010 instance.setOutput(out); 011 instance.startTable(); 012 013 instance.setColumnCount(4); 014 instance.formatHeaderRow("First", "Second", "Third", "Fourth"); 015 instance.finishTable(); 016 } 017 018 019}