The class that describes the visitor pattern over the tasks structure. Although visit (Note n) is not used here, it may turn out to be useful in the future (e.g. for printing or similar). More...
Inherited by Tomboy.TaskManager.CheckDoneVisitor, Tomboy.TaskManager.GetAvPriorityVisitor, Tomboy.TaskManager.GetMinDueDateVisitor, and Tomboy.TaskManager.SetDoneVisitor.
Public Member Functions | |
abstract void | visit (Note note) |
abstract void | visit (TaskList taskList) |
abstract void | visit (Task task) |
Protected Attributes | |
List< AttributedTask > | visited |
The tasks and task lists already visited (necessary for detecting cyclic behavior). |
The class that describes the visitor pattern over the tasks structure. Although visit (Note n) is not used here, it may turn out to be useful in the future (e.g. for printing or similar).
List<AttributedTask> Tomboy.TaskManager.Visitor.visited [protected] |
The tasks and task lists already visited (necessary for detecting cyclic behavior).