Package scalaSci.help

Source Code of scalaSci.help.PDFHelpFrame

package scalaSci.help;

import com.sun.pdfview.PDFViewer;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.swing.JFrame;


public class PDFHelpFrame  extends JFrame {
  BufferedImage [] images;
 
     
       
      public PDFHelpFrame(File pdfFile) {
           
            PDFViewer pdfv = new PDFViewer(false);
            try {
                pdfv.openFile(pdfFile);
               
            } catch (IOException ex) {
                ex.printStackTrace();
            }
           
        
       
      }     

     
       
         

}
TOP

Related Classes of scalaSci.help.PDFHelpFrame

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.