
jodd.lagarto.dom.NodeVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xml-stream-css Show documentation
Show all versions of xml-stream-css Show documentation
Stream Xml using StAX and Css matcher
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.
package jodd.lagarto.dom;
/**
* This is a visitor for DOM tree.
*/
public interface NodeVisitor {
void cdata(CData cdata);
void comment(Comment comment);
void document(Document document);
void documentType(DocumentType documentType);
void element(Element element);
void text(Text text);
void xmlDeclaration(XmlDeclaration xmlDeclaration);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy