summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/TodoItem.java
blob: d956800bad419ca0d03e4f4a389a8f71b33e4cdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.madore.damlengine;

public abstract class TodoItem {

    public static class Options {
    }

    public TodoDeque ownerDeque;
    public TodoContext context;
    public Options options;

    public TodoItem(TodoContext context, Options options) {
	this.context = context;
	this.options = options;
    }

    public abstract void handle();

}