1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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().setFrameTopChar('v');
at.getContext().setFrameBottomChar('^');
at.getContext().setFrameLeftChar('>');
at.getContext().setFrameRightChar('<');
at.getContext().setFrameTopMargin(1);
at.getContext().setFrameBottomMargin(2);
at.getContext().setFrameLeftMargin(3);
at.getContext().setFrameRightMargin(4);
System.out.println(at.render(39)); |