SourceLineAnnotation line = bugInstance.getPrimarySourceLineAnnotation();
lineStart = line.getStartLine();
lineEnd = line.getEndLine();
SourceFinder sourceFinder = AnalysisContext.currentAnalysisContext().getSourceFinder();
String pkgName = line.getPackageName();
try {
fullPath = sourceFinder.findSourceFile(pkgName, line.getSourceFile()).getFullFileName();
} catch (IOException e) {
if (pkgName.equals("")) {
fullPath = line.getSourceFile();
} else {
fullPath = pkgName.replace('.', '/') + "/" + line.getSourceFile();