1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
AP_Context ctx = new AP_Context().setWidth(39);
AsciiParagraph ap = new AsciiParagraph(ctx);
ap.addText(new LoremIpsum().getWords(29));
ctx.setAlignment(TextAlignment.JUSTIFIED);
System.out.println(ap.render());
ctx.setAlignment(TextAlignment.JUSTIFIED_LEFT);
System.out.println(ap.render());
ctx.setAlignment(TextAlignment.JUSTIFIED_RIGHT);
System.out.println(ap.render());
ctx.setAlignment(TextAlignment.CENTER);
System.out.println(ap.render());
ctx.setAlignment(TextAlignment.LEFT);
System.out.println(ap.render());
ctx.setAlignment(TextAlignment.RIGHT);
System.out.println(ap.render());