Class that represents the common functionality of TaskList and Task
Ejemplo n.º 1
0
 public SetDoneVisitor(bool done, Task sender)
 {
     this.done = done;
     this.sender = sender;
     visited = new List<AttributedTask> ();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Attach a task or tasklist to this tag
 /// </summary>
 /// <param name="atask">
 /// A <see cref="AttributedTask"/>
 /// </param>
 public void Bind(AttributedTask attributedTask)
 {
     AttributedTask = attributedTask;
 }