828384858687888990
public abstract TableHeader[] getTableHeaders(); public void addColumn( Component component ) { Td col = new Td(); col.add( component ); content.add( col ); }
899091929394959697
content.add( col ); } public void addColumn( String text ) { Td col = new Td(); col.setInnerHtml( text ); content.add( col ); }
96979899100101102103104
content.add( col ); } public void addColumn( Boolean bool ) { Td col = new Td(); col.setInnerHtml( bool.toString() ); content.add( col ); }
103104105106107108109110111
content.add( col ); } public void addColumn( Date date, SimpleDateFormat format ) { Td col = new Td(); col.setInnerHtml( FormatUtil.formatDate( date, format ) ); content.add( col ); }
110111112113114115116117118119120121122
content.add( col ); } public void addColumn( Component... components ) { Td col = new Td(); for ( Component c : components ) { col.add( c ); } content.add( col ); }