1
2
3
4
5
6
7
8
9
10
11
12
AsciiTable at = new AsciiTable();
at.addRule();
at.addRow("first", "information");
at.addRule();
at.addRow("second", "info");
at.addRule();
at.getRenderer().setCWC(new CWC_LongestWordMax(8));
System.out.println(at.render());
at.getRenderer().setCWC(new CWC_LongestWordMax(new int[]{4,-1}));
System.out.println(at.render());