summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/TodoItem.java
blob: e058ae2ce214f3bee7481226375f37de6f416cea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
    }

}