Class PrintTask
- java.lang.Object
-
- org.jfree.report.modules.gui.swing.printing.PrintTask
-
- All Implemented Interfaces:
java.lang.Runnable
public class PrintTask extends java.lang.Object implements java.lang.Runnable
Creation-Date: Dec 3, 2006, 3:23:22 PM- Author:
- Thomas Morgner
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
run()
When an object implementing interfaceRunnable
is used to create a thread, starting the thread causes the object'srun
method to be called in that separately executing thread.
-
-
-
Constructor Detail
-
PrintTask
public PrintTask(ReportJob job)
-
-
Method Detail
-
run
public void run()
When an object implementing interfaceRunnable
is used to create a thread, starting the thread causes the object'srun
method to be called in that separately executing thread. The general contract of the methodrun
is that it may take any action whatsoever.- Specified by:
run
in interfacejava.lang.Runnable
- See Also:
Thread.run()
-
-