use of com.dexels.navajo.document.navascript.tags.CommentBlock in project navajo by Dexels.
the class NavascriptSaxHandler method addComment.
@Override
public void addComment(String c) {
CommentBlock cb = new CommentBlock();
cb.setComment(c);
if (currentNode != null && currentNode.size() > 0) {
NS3Compatible cn = (NS3Compatible) currentNode.lastElement();
cn.addComment(cb);
}
}
Aggregations