Class TypeSet
- java.lang.Object
-
- net.sourceforge.pmd.lang.java.symboltable.TypeSet
-
public class TypeSet extends Object
Keeps track of the types encountered in a ASTCompilationUnit
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTypeSet.AbstractResolverBase Resolver class that support aPMDASMClassLoaderclass loader.static classTypeSet.CurrentPackageResolverResolver that uses the current package to resolve a simple class name.static classTypeSet.ExplicitImportResolverResolver that tries to resolve the given simple class name with the explicit import statements.static classTypeSet.FullyQualifiedNameResolverResolver that simply loads the class by name.static classTypeSet.ImplicitImportResolverResolver that resolves simple class names from the implicit import ofjava.lang.*.static classTypeSet.ImportOnDemandResolverResolver that uses the "on demand" import statements.static classTypeSet.PrimitiveTypeResolverResolver that resolves primitive types such as int or double.static interfaceTypeSet.ResolverA resolver that can resolve a class by name.static classTypeSet.VoidResolverResolver that resolves the "void" type.
-
Constructor Summary
Constructors Constructor Description TypeSet()TheTypeSetprovides type resolution for the symbol facade.TypeSet(ClassLoader classLoader)TheTypeSetprovides type resolution for the symbol facade.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddImport(String importString)Adds a import to the list of importsClass<?>findClass(String name)Resolves a class by its name using all known resolvers.StringgetASTCompilationUnitPackage()Set<String>getExplicitImports()intgetImportsCount()booleanhasAuxclasspath()Whether the classloader is using the auxclasspath or not.voidsetASTCompilationUnitPackage(String pkg)
-
-
-
Constructor Detail
-
TypeSet
public TypeSet()
TheTypeSetprovides type resolution for the symbol facade.
-
TypeSet
public TypeSet(ClassLoader classLoader)
TheTypeSetprovides type resolution for the symbol facade.- Parameters:
classLoader- the class loader to use to search classes (could be an auxiliary class path)
-
-
Method Detail
-
hasAuxclasspath
public boolean hasAuxclasspath()
Whether the classloader is using the auxclasspath or not.- Returns:
trueif the classloader is using the auxclasspath feature
-
setASTCompilationUnitPackage
public void setASTCompilationUnitPackage(String pkg)
-
getASTCompilationUnitPackage
public String getASTCompilationUnitPackage()
-
addImport
public void addImport(String importString)
Adds a import to the list of imports- Parameters:
importString- the import to add
-
getImportsCount
public int getImportsCount()
-
-