Examples of MarathonCheckList


Examples of net.sourceforge.marathon.checklist.MarathonCheckList

    }

    public void onInsertChecklist() {
        String checklistDir = System.getProperty(Constants.PROP_CHECKLIST_DIR);
        File dir = new File(checklistDir);
        MarathonCheckList dialog;
        if (controller != null && controller.isShowing())
            dialog = new MarathonCheckList(controller, dir, true);
        else
            dialog = new MarathonCheckList(DisplayWindow.this, dir, true);
        dialog.setVisible(true);
        navigator.refresh(new File[] { dir });
        if (dialog.isOK()) {
            File selectedChecklist = dialog.getSelectedChecklist();
            insertChecklist(selectedChecklist.getName());
        }
    }
View Full Code Here

Examples of net.sourceforge.marathon.checklist.MarathonCheckList

    }

    public void onManageChecklists() {
        String projectDir = System.getProperty(Constants.PROP_CHECKLIST_DIR);
        File dir = new File(projectDir);
        MarathonCheckList dialog = new MarathonCheckList(DisplayWindow.this, dir, false);
        dialog.setVisible(true);
        navigator.refresh(new File[] { dir });
    }
View Full Code Here
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.