Uses of Class
edu.umd.cs.findbugs.ba.SourceInfoMap.SourceLineRange
-
Packages that use SourceInfoMap.SourceLineRange Package Description edu.umd.cs.findbugs.ba A bytecode analysis framework for BCEL, providing CFG construction, generic dataflow analysis, and a variety of specific dataflow analyses. -
-
Uses of SourceInfoMap.SourceLineRange in edu.umd.cs.findbugs.ba
Fields in edu.umd.cs.findbugs.ba with type parameters of type SourceInfoMap.SourceLineRange Modifier and Type Field Description private java.util.Map<java.lang.String,SourceInfoMap.SourceLineRange>
SourceInfoMap. classLineMap
private java.util.Map<SourceInfoMap.FieldDescriptor,SourceInfoMap.SourceLineRange>
SourceInfoMap. fieldLineMap
private java.util.Map<SourceInfoMap.MethodDescriptor,SourceInfoMap.SourceLineRange>
SourceInfoMap. methodLineMap
Methods in edu.umd.cs.findbugs.ba that return SourceInfoMap.SourceLineRange Modifier and Type Method Description private static SourceInfoMap.SourceLineRange
SourceInfoMap. createRange(java.lang.String start, java.lang.String end)
SourceInfoMap.SourceLineRange
SourceInfoMap. getClassLine(java.lang.String className)
Look up the line number range for a class.SourceInfoMap.SourceLineRange
SourceInfoMap. getFieldLine(java.lang.String className, java.lang.String fieldName)
Look up the line number range for a field.SourceInfoMap.SourceLineRange
SourceInfoMap. getMethodLine(java.lang.String className, java.lang.String methodName, java.lang.String methodSignature)
Look up the line number range for a method.Methods in edu.umd.cs.findbugs.ba with parameters of type SourceInfoMap.SourceLineRange Modifier and Type Method Description void
SourceInfoMap. addClassLine(java.lang.String className, SourceInfoMap.SourceLineRange range)
Add line number entry for a class.void
SourceInfoMap. addFieldLine(java.lang.String className, java.lang.String fieldName, SourceInfoMap.SourceLineRange range)
Add a line number entry for a field.void
SourceInfoMap. addMethodLine(java.lang.String className, java.lang.String methodName, java.lang.String methodSignature, SourceInfoMap.SourceLineRange range)
Add a line number entry for a method.
-