List of usage examples for com.lowagie.tools Executable Executable
Executable
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(); } }