summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/Context.java
diff options
context:
space:
mode:
authorDavid A. Madore <david+git@madore.org>2011-08-28 22:35:34 +0200
committerDavid A. Madore <david+git@madore.org>2011-08-28 22:35:34 +0200
commit1710554809835a82415a1f8789bed3016c58fc96 (patch)
tree5fb7c9d65874e0157c06b79d24b679b3c1b233ff /org/madore/damlengine/Context.java
parenta0a7d6212299a1723cf6c0666f9838136934cc07 (diff)
downloaddamlengine-1710554809835a82415a1f8789bed3016c58fc96.tar.gz
damlengine-1710554809835a82415a1f8789bed3016c58fc96.tar.bz2
damlengine-1710554809835a82415a1f8789bed3016c58fc96.zip
Handling of weblog index (including killing nested a elements).
Diffstat (limited to 'org/madore/damlengine/Context.java')
-rw-r--r--org/madore/damlengine/Context.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/org/madore/damlengine/Context.java b/org/madore/damlengine/Context.java
index 8b62b6b..388a076 100644
--- a/org/madore/damlengine/Context.java
+++ b/org/madore/damlengine/Context.java
@@ -71,9 +71,12 @@ public class Context implements Cloneable {
public EntryContext ent;
+ public boolean killA;
+
public Context(Document doc) {
this.doc = doc;
this.gc = new GeneralContext();
+ this.killA = false;
}
public Context clone() {