summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/XemptyAttrHandler.java
blob: 16f81739495f17f2f1af408fef3d9eea6cd3a205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.madore.damlengine;

import org.w3c.dom.*;

public class XemptyAttrHandler extends AttrHandler {

    public void handle(TodoAttr that) {
	that.owner.removeAttribute(that.attr.getName());
	that.owner.appendChild(DamlEngine.doc.createComment(" EMPTY "));
    }

}