|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
TypeResolutionFacade.java | - | 100% | 100% | 100% |
|
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 | 18 | public void initializeWith(ASTCompilationUnit node) { |
15 | 18 | ClassTypeResolver ctr = new ClassTypeResolver(); |
16 | 18 | node.jjtAccept(ctr, null); |
17 | } | |
18 | ||
19 | } |
|