Package org.nxplanner.db

Examples of org.nxplanner.db.TaskQueryHelper$TaskStatusFilter


        return (TaskData)getObject(TaskData.class, id);
    }

    public TaskData[] getCurrentTasksForPerson(int personId) throws DatabaseQueryException {
        return (TaskData[])toArray(TaskData.class,
                new TaskQueryHelper(personId).getCurrentActiveTasksForPerson());
    }
View Full Code Here


                new TaskQueryHelper(personId).getCurrentActiveTasksForPerson());
    }

    public TaskData[] getPlannedTasksForPerson(int personId) throws DatabaseQueryException {
        return (TaskData[])toArray(TaskData.class,
                new TaskQueryHelper(personId).getCurrentPendingTasksForPerson());
    }
View Full Code Here

TOP

Related Classes of org.nxplanner.db.TaskQueryHelper$TaskStatusFilter

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.