Uses of Class
edu.umd.cs.findbugs.ba.type2.ClassType

Packages that use ClassType
edu.umd.cs.findbugs.ba.type2 A whizzy set of classes for representing Java types. 
 

Uses of ClassType in edu.umd.cs.findbugs.ba.type2
 

Methods in edu.umd.cs.findbugs.ba.type2 that return ClassType
 ClassType TypeRepository.classTypeFromDottedClassName(java.lang.String dottedClassName)
          Get a ClassType from a class or interface name using dots to separate package components, creating it if it doesn't exist.
 ClassType TypeRepository.classTypeFromSignature(java.lang.String signature)
          Get a ClassType from a signature, e.g., JAVA_LANG_OBJECT_SIGNATURE.
 ClassType TypeRepository.classTypeFromSlashedClassName(java.lang.String slashedClassName)
          Get a ClassType from a class or interface name using slashes to separate package components, creating it if it doesn't exist.
 ClassType TypeRepository.getSuperclass(ClassType type)
          Get the superclass of a class type.
 

Methods in edu.umd.cs.findbugs.ba.type2 with parameters of type ClassType
 void TypeRepository.addInterfaceLink(ObjectType implementor, ClassType iface)
          Add a direct implemented interface relationship to types in the repository.
 ClassType TypeRepository.getSuperclass(ClassType type)
          Get the superclass of a class type.
 void ClassResolver.resolveClass(ClassType type, TypeRepository repos)
          Resolve a class.
 void BCELRepositoryClassResolver.resolveClass(ClassType type, TypeRepository repos)
           
 void TypeVisitor.visitClassType(ClassType type)
          Visit a class type.