diff options
Diffstat (limited to 'org/madore/damlengine/TodoItem.java')
| -rw-r--r-- | org/madore/damlengine/TodoItem.java | 18 | 
1 files changed, 18 insertions, 0 deletions
| 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<String,Object> context; +    protected Map<String,Object> options; + +    public TodoItem(Node node, Map<String,Object> context, Map<String,Object> options) { +	this.node = node; +	this.context = context; +	this.options = options; +    } + +} | 
