Package net.sourceforge.marathon.checklist

Examples of net.sourceforge.marathon.checklist.MarathonCheckList$CheckListFileModel


    }

    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


    }

    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

Related Classes of net.sourceforge.marathon.checklist.MarathonCheckList$CheckListFileModel

Copyright © 2018 www.massapicom. 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.