From b078ed40a25afd13e420da54c78ad67ad369e88e Mon Sep 17 00:00:00 2001 From: "David A. Madore" Date: Mon, 12 Apr 2010 19:25:14 +0200 Subject: Start writing code for a todo stack. --- org/madore/damlengine/TodoItem.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 org/madore/damlengine/TodoItem.java (limited to 'org/madore/damlengine/TodoItem.java') diff --git a/org/madore/damlengine/TodoItem.java b/org/madore/damlengine/TodoItem.java new file mode 100644 index 0000000..e058ae2 --- /dev/null +++ b/org/madore/damlengine/TodoItem.java @@ -0,0 +1,18 @@ +package org.madore.damlengine; + +import java.util.Map; +import org.w3c.dom.Node; + +public class TodoItem { + + protected Node node; + protected Map context; + protected Map options; + + public TodoItem(Node node, Map context, Map options) { + this.node = node; + this.context = context; + this.options = options; + } + +} -- cgit v1.2.3