com.pdfjet.Paragraph Maven / Gradle / Ivy
/* */ package com.pdfjet;
/* */
/* */ import java.util.ArrayList;
/* */ import java.util.List;
/* */
/* */ public class Paragraph
/* */ {
/* 20 */ protected List list = null;
/* 21 */ protected int alignment = 0;
/* */
/* */ public Paragraph()
/* */ {
/* 29 */ this.list = new ArrayList();
/* */ }
/* */
/* */ public Paragraph(TextLine paramTextLine)
/* */ {
/* 34 */ this.list = new ArrayList();
/* 35 */ this.list.add(paramTextLine);
/* */ }
/* */
/* */ public Paragraph add(TextLine paramTextLine)
/* */ {
/* 46 */ this.list.add(paramTextLine);
/* 47 */ return this;
/* */ }
/* */
/* */ public void removeLastTextLine()
/* */ {
/* 56 */ if (this.list.size() >= 1)
/* 57 */ this.list.remove(this.list.size() - 1);
/* */ }
/* */
/* */ public Paragraph setAlignment(int paramInt)
/* */ {
/* 71 */ this.alignment = paramInt;
/* 72 */ return this;
/* */ }
/* */ }
/* Location: E:\EGGWIFI\Customer\trunk\src\Workspace\Customer\Customer Maven Webapp\src\main\webapp\WEB-INF\lib\PDFjet.jar
* Qualified Name: com.pdfjet.Paragraph
* JD-Core Version: 0.6.2
*/