All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jpedal.external.AnnotationHandler Maven / Gradle / Ivy

There is a newer version: 7.15.25
Show newest version
/*
 * ===========================================
 * Java Pdf Extraction Decoding Access Library
 * ===========================================
 *
 * Project Info:  http://www.idrsolutions.com
 * Help section for developers at http://www.idrsolutions.com/support/
 *
 * (C) Copyright 1997-2017 IDRsolutions and Contributors.
 *
 * This file is part of JPedal/JPDF2HTML5
 *
 @LICENSE@
 *
 * ---------------
 * AnnotationHandler.java
 * ---------------
 */
package org.jpedal.external;

import java.util.Map;

import org.jpedal.PdfDecoderInt;
import org.jpedal.io.PdfObjectReader;
import org.jpedal.objects.raw.FormObject;

public interface AnnotationHandler {

    /**
     * called when each page created
     */
    void handleAnnotations(PdfDecoderInt decode_pdf, Map objs, int p);

    /**
     * called when mouse moves so you can react to context
     */
    void checkLinks(Map objs, boolean mouseClicked, PdfObjectReader pdfObjectReader, int x, int y, org.jpedal.gui.GUIFactory currentGUI, org.jpedal.examples.viewer.Values commonValues);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy