1 /*** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.typeresolution; 5 6 import net.sourceforge.pmd.ast.ASTCompilationUnit; 7 import net.sourceforge.pmd.ast.JavaParserVisitorAdapter; 8 9 /*** 10 * @author Allan Caplan 11 */ 12 public class TypeResolutionFacade extends JavaParserVisitorAdapter { 13 14 public void initializeWith(ASTCompilationUnit node) { 15 ClassTypeResolver ctr = new ClassTypeResolver(); 16 node.jjtAccept(ctr, null); 17 } 18 19 }