Add description to two classes.

FEA: ItEr75S27PerProjectDashboard
This commit is contained in:
Nacho Barrientos 2011-11-14 17:42:52 +01:00 committed by Manuel Rego Casasnovas
parent 16a12b3b2e
commit 8f756adeb9
2 changed files with 12 additions and 0 deletions

View file

@ -19,6 +19,12 @@
package org.libreplan.business.planner.entities.visitors;
/**
* Visits a task graph computing statuses and writing them
* down in a Map.
*
* @author Nacho Barrientos <nacho@igalia.com>
*/
import java.util.EnumMap;
import java.util.Map;

View file

@ -19,6 +19,12 @@
package org.libreplan.business.util;
/**
* This class represents an abstract visitor to traverse
* task graphs.
*
* @author Nacho Barrientos <nacho@igalia.com>
*/
import org.libreplan.business.planner.entities.Task;
import org.libreplan.business.planner.entities.TaskGroup;