summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/Context.java
diff options
context:
space:
mode:
authorDavid A. Madore <david+git@madore.org>2011-09-08 16:45:01 +0200
committerDavid A. Madore <david+git@madore.org>2011-09-08 16:47:19 +0200
commite1a28d91563986bb6bd8866f7df68a4b0569ec9b (patch)
tree4579da56b53866d55feaae0fcf8c553961f4bc1e /org/madore/damlengine/Context.java
parentc1aa7509008d3aaa4afa9ceb3c3e029b9542f75a (diff)
downloaddamlengine-e1a28d91563986bb6bd8866f7df68a4b0569ec9b.tar.gz
damlengine-e1a28d91563986bb6bd8866f7df68a4b0569ec9b.tar.bz2
damlengine-e1a28d91563986bb6bd8866f7df68a4b0569ec9b.zip
Display lists of categories, with appropriate links.
Diffstat (limited to 'org/madore/damlengine/Context.java')
-rw-r--r--org/madore/damlengine/Context.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/org/madore/damlengine/Context.java b/org/madore/damlengine/Context.java
index d7c950a..ca521fa 100644
--- a/org/madore/damlengine/Context.java
+++ b/org/madore/damlengine/Context.java
@@ -68,14 +68,17 @@ public class Context implements Cloneable {
public String date;
public String number;
public String dow;
+ public ArrayList<String> catList;
public Element headerNode;
public Element headlinkNode;
public EntryContext(String year, String month, String day,
- String number, String dow) {
+ String number, String dow,
+ ArrayList<String> catList) {
this.year = year; this.month = month; this.day = day;
this.yandm = year+"-"+month;
this.date = yandm+"-"+day;
this.number = number; this.dow = dow;
+ this.catList = catList;
}
}