Package net.sourceforge.processdash.ev

Examples of net.sourceforge.processdash.ev.TaskLabeler


            boolean includeRollups) {
        String[] taskListNames = EVTaskList.findTaskLists(data);
        List<EVTaskList> result = new ArrayList<EVTaskList>(
                taskListNames.length);

        TaskLabeler taskLabeler = null;

        for (String taskListName : taskListNames) {
            EVTaskList tl = EVTaskList.openExisting(taskListName, data,
                hierarchy, null, false);
            if (tl instanceof EVTaskListData && !includePersonal)
                continue;
            if (tl instanceof EVTaskListRollup && !includeRollups)
                continue;
            tl.recalc();
            tl = new EVTaskListMerged(tl, false, true, null);

            if (taskLabeler == null) {
                taskLabeler = new DefaultTaskLabeler(this);
                taskLabeler.recalculate();
            }
            tl.setTaskLabeler(taskLabeler);

            result.add(tl);
        }
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.ev.TaskLabeler

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.