Package urjc.ScrumMaster.client.task

Examples of urjc.ScrumMaster.client.task.TaskPanel


        @Override
    public void manageTaskAction(String id, String name, String description, Float inEstimation, Float currEstimation, boolean assigned, boolean planned, int action, Boolean done) {
        if (action == MODIFY)
            modifyTaskForm(id, name, description, inEstimation, currEstimation, assigned, planned, done);
        else if (action == SHOW)
            new TaskPanel(name, description, inEstimation, currEstimation, assigned, planned, done, canvasPrincipal, SHOW);
    }
View Full Code Here

TOP

Related Classes of urjc.ScrumMaster.client.task.TaskPanel

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.