Examples of PdfPageEvent


Examples of com.lowagie.text.pdf.PdfPageEvent

   * @param paragraphPosition
   *            the position the paragraph will be written to
   */
  public void onParagraph(PdfWriter writer, Document document,
      float paragraphPosition) {
    PdfPageEvent event;
    for (Iterator i = events.iterator(); i.hasNext(); ) {
      event = (PdfPageEvent)i.next();
      event.onParagraph(writer, document, paragraphPosition);
    }
  }
View Full Code Here

Examples of com.lowagie.text.pdf.PdfPageEvent

   * @param paragraphPosition
   *            the position of the end of the paragraph
   */
  public void onParagraphEnd(PdfWriter writer, Document document,
      float paragraphPosition) {
    PdfPageEvent event;
    for (Iterator i = events.iterator(); i.hasNext(); ) {
      event = (PdfPageEvent)i.next();
      event.onParagraphEnd(writer, document, paragraphPosition);
    }
  }
View Full Code Here

Examples of com.lowagie.text.pdf.PdfPageEvent

   * @param title
   *            the title of the Chapter
   */
  public void onChapter(PdfWriter writer, Document document,
      float paragraphPosition, Paragraph title) {
    PdfPageEvent event;
    for (Iterator i = events.iterator(); i.hasNext(); ) {
      event = (PdfPageEvent)i.next();
      event.onChapter(writer, document, paragraphPosition, title);
    }
  }
View Full Code Here

Examples of com.lowagie.text.pdf.PdfPageEvent

   *            the document
   * @param position
   *            the position of the end of the chapter.
   */
  public void onChapterEnd(PdfWriter writer, Document document, float position) {
    PdfPageEvent event;
    for (Iterator i = events.iterator(); i.hasNext(); ) {
      event = (PdfPageEvent)i.next();
      event.onChapterEnd(writer, document, position);
    }
  }
View Full Code Here

Examples of com.lowagie.text.pdf.PdfPageEvent

   * @param title
   *            the title of the section
   */
  public void onSection(PdfWriter writer, Document document,
      float paragraphPosition, int depth, Paragraph title) {
    PdfPageEvent event;
    for (Iterator i = events.iterator(); i.hasNext(); ) {
      event = (PdfPageEvent)i.next();
      event.onSection(writer, document, paragraphPosition, depth, title);
    }
  }
View Full Code Here

Examples of com.lowagie.text.pdf.PdfPageEvent

   *            the document
   * @param position
   *            the position of the end of the section
   */
  public void onSectionEnd(PdfWriter writer, Document document, float position) {
    PdfPageEvent event;
    for (Iterator i = events.iterator(); i.hasNext(); ) {
      event = (PdfPageEvent)i.next();
      event.onSectionEnd(writer, document, position);
    }
  }
View Full Code Here

Examples of com.lowagie.text.pdf.PdfPageEvent

   * @param text
   *            the text of the tag
   */
  public void onGenericTag(PdfWriter writer, Document document,
      Rectangle rect, String text) {
    PdfPageEvent event;
    for (Iterator i = events.iterator(); i.hasNext(); ) {
      event = (PdfPageEvent)i.next();
      event.onGenericTag(writer, document, rect, text);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.