C# Class Tomboy.TaskManager.Visitor

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)
Mostra file Open project: rggjan/Tomboy-Todo-List

Protected Properties

Property Type Description
visited List

Public Methods

Method Description
visit ( Note note ) : void
visit ( Task task ) : void
visit ( TaskList taskList ) : void

Method Details

visit() public abstract method

public abstract visit ( Note note ) : void
note Tomboy.Note
return void

visit() public abstract method

public abstract visit ( Task task ) : void
task Task
return void

visit() public abstract method

public abstract visit ( TaskList taskList ) : void
taskList TaskList
return void

Property Details

visited protected_oe property

The tasks and task lists already visited (necessary for detecting cyclic behavior)
protected List visited
return List