nodetraverser.java
来自「一个Java持久层类库」· Java 代码 · 共 45 行
JAVA
45 行
package org.hibernate.hql.ast.util;import antlr.collections.AST;/** * A visitor for traversing an AST tree. * * @author Steve Ebersole */public class NodeTraverser { public static interface VisitationStrategy { public void visit(AST node); } private final VisitationStrategy strategy; public NodeTraverser(VisitationStrategy strategy) { this.strategy = strategy; } /** * Traverse the AST tree depth first. * <p/> * Note that the AST passed in is not visited itself. Visitation starts * with its children. * * @param ast */ public void traverseDepthFirst(AST ast) { if ( ast == null ) { throw new IllegalArgumentException( "node to traverse cannot be null!" ); } visitDepthFirst( ast.getFirstChild() ); } private void visitDepthFirst(AST ast) { if ( ast == null ) { return; } strategy.visit( ast ); visitDepthFirst( ast.getFirstChild() ); visitDepthFirst( ast.getNextSibling() ); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?