1 47 48 package com.lowagie.text; 49 50 55 public class ChapterAutoNumber extends Chapter { 56 57 private static final long serialVersionUID = -9217457637987854167L; 59 60 65 public ChapterAutoNumber(final Paragraph para) { 66 super(para, 0); 67 } 68 69 74 public ChapterAutoNumber(final String title) { 75 super(title, 0); 76 } 77 78 84 public Section addSection(final String title) { 85 return addSection(title, 2); 86 } 87 88 94 public Section addSection(final Paragraph title) { 95 return addSection(title, 2); 96 } 97 98 } 99 | Popular Tags |