summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/TodoItem.java
blob: e4669c9a98b48c5fb14317ad5b5abfbb0a1fc57a (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 Context ctx;
    public Options options;

    public TodoItem(Context ctx, Options options) {
	this.ctx = ctx;
	this.options = options;
    }

    public abstract void handle();

}