Package org.jpedal.objects.acroforms.gui

Examples of org.jpedal.objects.acroforms.gui.Summary


    public void showSig(PdfObject sigObject) {
     
        JDialog frame = new JDialog(getParentJFrame(this.decode_pdf), "Signature Properties", true);

        Summary summary = new Summary(frame, sigObject);
        summary.setValues(sigObject.getTextStreamValue(PdfDictionary.Name),
                sigObject.getTextStreamValue(PdfDictionary.Reason),
                sigObject.getTextStreamValue(PdfDictionary.M),
                sigObject.getTextStreamValue(PdfDictionary.Location));

        frame.getContentPane().add(summary);
View Full Code Here

TOP

Related Classes of org.jpedal.objects.acroforms.gui.Summary

Copyright © 2018 www.massapicom. 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.