1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
AsciiTable at = new AsciiTable();
at.addRule();
at.addRow("row 1 col 1", "row 1 col 2");
at.addRule();
at.addRow("row 2 col 1", "row 2 col 2");
at.addRule();
at.getContext().setWidth(50);
System.out.println(at.render());
at.getContext().setWidth(40);
System.out.println(at.render());
at.getContext().setWidth(30);
System.out.println(at.render());