Example usage for com.lowagie.tools Executable Executable

List of usage examples for com.lowagie.tools Executable Executable

Introduction

In this page you can find the example usage for com.lowagie.tools Executable Executable.

Prototype

Executable

Source Link

Usage

From source file:radpharmadose.RadPharmaDoseMainWindow.java

public void PrintPDF(String fileName) {
    try {//  w ww . j  ava  2s.  c om
        Executable ex = new Executable();
        ex.openDocument(fileName);
        ex.printDocument(fileName);
    } catch (IOException e) {
        e.printStackTrace();
    }
}