org.jpedal.examples.viewer.gui.generic.GUIAnnotationPanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of OpenViewerFX Show documentation
Show all versions of OpenViewerFX Show documentation
Open Source (LGPL) JavaFX PDF Viewer
/*
* ===========================================
* 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@
*
* ---------------
* GUIAnnotationPanel.java
* ---------------
*/
package org.jpedal.examples.viewer.gui.generic;
import org.jpedal.PdfDecoderInt;
public interface GUIAnnotationPanel {
enum FORMMODE {
CREATION, EDIT
}
boolean addPanel();
Object getAnnotationType();
void clearAnnotationType();
Object getAnnotationListener();
void addAnnotationForWriting(Object annot);
boolean annotationAdded();
void clearAnnotations();
void saveAnnotations(String input, String output);
void saveForms(String input, String output, Object[] objArr);
void dispose();
Object getDisplayPanel();
void populateList(PdfDecoderInt decode_pdf);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy