Package edu.umd.cs.findbugs.gui2
Class BugLoader
java.lang.Object
edu.umd.cs.findbugs.gui2.BugLoader
Everything having to do with loading bugs should end up here.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static class
just used to know how the new analysis went -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription(package private) static void
addDeadBugMatcher
(BugCollection bugCollection) static BugCollection
TODO: This really needs to be rewritten such that they don't have to choose ALL xmls in one fel swoop.private static IFindBugsEngine
createEngine
(Project p, BugReporter pcb) Create the IFindBugsEngine that will be used to analyze the application.static BugCollection
Does what it says it does, hit apple r (control r on pc) and the analysis is redone using the current projectstatic BugCollection
doAnalysis
(Project p, FindBugsProgress progressCallback) Performs an analysis and returns the BugSet created(package private) static UserPreferences
Get UserPreferences singleton.static SortedBugCollection
static SortedBugCollection
static Project
loadProject
(MainFrame mainFrame, File f) static BugCollection
Does what it says it does, hit apple r (control r on pc) and the analysis is redone using the current project
-
Field Details
-
preferencesSingleton
-
-
Constructor Details
-
BugLoader
private BugLoader()
-
-
Method Details
-
getUserPreferences
Get UserPreferences singleton. This should only be used if there is a single set of user preferences to be used for all projects.- Returns:
- the UserPreferences
-
doAnalysis
public static BugCollection doAnalysis(@Nonnull Project p, FindBugsProgress progressCallback) throws IOException, InterruptedException Performs an analysis and returns the BugSet created- Parameters:
p
- The Project to run the analysis onprogressCallback
- the progressCallBack is supposed to be supplied by analyzing dialog, FindBugs supplies progress information while it runs the analysis- Returns:
- the bugs found
- Throws:
InterruptedException
IOException
-
createEngine
Create the IFindBugsEngine that will be used to analyze the application.- Parameters:
p
- the Projectpcb
- the PrintCallBack- Returns:
- the IFindBugsEngine
-
loadBugs
@CheckForNull public static SortedBugCollection loadBugs(MainFrame mainFrame, Project project, File source) -
loadBugs
@CheckForNull public static SortedBugCollection loadBugs(MainFrame mainFrame, Project project, URL url) -
addDeadBugMatcher
-
loadProject
-
combineBugHistories
TODO: This really needs to be rewritten such that they don't have to choose ALL xmls in one fel swoop. I'm thinking something more like new project wizard's functionality. -Dan Merges bug collection histories from xmls selected by the user. Right now all xmls must be in the same folder and he must select all of them at once Makes use of FindBugs's mergeCollection method in the Update class of the workflow package- Returns:
- the merged collecction of bugs
-
doAnalysis
Does what it says it does, hit apple r (control r on pc) and the analysis is redone using the current project- Parameters:
p
-- Returns:
- the bugs from the reanalysis, or null if cancelled
-
redoAnalysisKeepComments
Does what it says it does, hit apple r (control r on pc) and the analysis is redone using the current project- Parameters:
p
-- Returns:
- the bugs from the reanalysis, or null if canceled
-