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)
Afficher le fichier Open project: rggjan/Tomboy-Todo-List

Protected Properties

Свойство Type Description
visited List

Méthodes publiques

Méthode Description
visit ( Note note ) : void
visit ( Task task ) : void
visit ( TaskList taskList ) : void

Method Details

visit() public abstract méthode

public abstract visit ( Note note ) : void
note Tomboy.Note
Résultat void

visit() public abstract méthode

public abstract visit ( Task task ) : void
task Task
Résultat void

visit() public abstract méthode

public abstract visit ( TaskList taskList ) : void
taskList TaskList
Résultat void

Property Details

visited protected_oe property

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