@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);
}