From c18d6e561179a3a96d93a9ae8c6034115ba36923 Mon Sep 17 00:00:00 2001 From: "David A. Madore" Date: Thu, 15 Apr 2010 23:06:03 +0200 Subject: Change dispatching approach: handlers are now part of todoItems. Instead of dispatching the todo item in function of the DAML node's local name at todo-handling time, the appropriate todo handler subclass is now instantiated in the todo deque by dispatching the creation of the todo item to the appropriate constructor. --- org/madore/damlengine/TodoItem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'org/madore/damlengine/TodoItem.java') diff --git a/org/madore/damlengine/TodoItem.java b/org/madore/damlengine/TodoItem.java index 84dfd05..226b771 100644 --- a/org/madore/damlengine/TodoItem.java +++ b/org/madore/damlengine/TodoItem.java @@ -4,6 +4,6 @@ public abstract class TodoItem { public TodoDeque ownerDeque; - public abstract void dispatch(); + public abstract void handle(); } -- cgit v1.2.3