Guest User

Untitled

a guest
Apr 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. // Creates table with 1 row and 2 columns
  2. HTMLTable table = new HTMLBuilder().getHTMLTable(1, 2);
  3.  
  4. // Sets the table contents
  5. table.setCell(0,0, "abc");
  6. table.setCell(0,1, "def");
  7.  
  8. String html = table.getHTML();
Add Comment
Please, Sign In to add comment