public void run() {
final File file = new File(reportDir, fileName);
final CheckList checklist;
try {
checklist = CheckList.read(new FileInputStream(file));
CheckListForm checklistForm = new CheckListForm(checklist, Mode.DISPLAY);
final CheckListDialog dialog = new CheckListDialog((JFrame) null, checklistForm);
JButton screenCapture = null;
if (checklist.getCaptureFile() != null) {
screenCapture = UIUtils.createScreenCaptureButton();