public class PrintWalker
extends DepthFirstAdapter
Simple AST walker. This is simple Abstract Syntax Tree walker
which will visit each of the nodes and print on standard output the
name of particular node visited. This class can be very usefull while
testing the tree structure for a given input. Check PrintTree class.