Uses of Interface
edu.umd.cs.findbugs.model.ClassNameRewriter
-
Packages that use ClassNameRewriter Package Description edu.umd.cs.findbugs Main package for the FindBugs application - contains the engine class (FindBugs), the object model classes for bug instances (BugInstance, BugAnnotation), and other miscellany.edu.umd.cs.findbugs.model Eventually, all model classes (BugInstance, BugCollection, etc.) should go in this package. -
-
Uses of ClassNameRewriter in edu.umd.cs.findbugs
Methods in edu.umd.cs.findbugs with parameters of type ClassNameRewriter Modifier and Type Method Description void
FuzzyBugComparator. setClassNameRewriter(ClassNameRewriter classNameRewriter)
void
SloppyBugComparator. setClassNameRewriter(ClassNameRewriter classNameRewriter)
void
VersionInsensitiveBugComparator. setClassNameRewriter(ClassNameRewriter classNameRewriter)
void
WarningComparator. setClassNameRewriter(ClassNameRewriter classNameRewriter)
-
Uses of ClassNameRewriter in edu.umd.cs.findbugs.model
Classes in edu.umd.cs.findbugs.model that implement ClassNameRewriter Modifier and Type Class Description class
IdentityClassNameRewriter
ClassNameRewriter that leaves classe names unchanged.class
MovedClassMap
Build a map of added class names to removed class names.Methods in edu.umd.cs.findbugs.model with parameters of type ClassNameRewriter Modifier and Type Method Description static FieldAnnotation
ClassNameRewriterUtil. convertFieldAnnotation(ClassNameRewriter classNameRewriter, FieldAnnotation annotation)
Rewrite a FieldAnnotation to update the class name and field signature, if needed.static MethodAnnotation
ClassNameRewriterUtil. convertMethodAnnotation(ClassNameRewriter classNameRewriter, MethodAnnotation annotation)
Rewrite a MethodAnnotation to update the class name, and any class names mentioned in the method signature.static java.lang.String
ClassNameRewriterUtil. rewriteMethodSignature(ClassNameRewriter classNameRewriter, java.lang.String methodSignature)
Rewrite a method signature.static java.lang.String
ClassNameRewriterUtil. rewriteSignature(ClassNameRewriter classNameRewriter, java.lang.String signature)
Rewrite a signature.
-