All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jodd.lagarto.dom.NodeVisitor Maven / Gradle / Ivy

// 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