FindBugs™ 1.3.8

Uses of Class
edu.umd.cs.findbugs.Project

Packages that use Project
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.gui   
edu.umd.cs.findbugs.gui2   
edu.umd.cs.findbugs.workflow   
 

Uses of Project in edu.umd.cs.findbugs
 

Fields in edu.umd.cs.findbugs declared as Project
protected  Project FindBugsCommandLine.project
          Project to analyze.
 

Methods in edu.umd.cs.findbugs that return Project
 Project Project.duplicate()
          Return an exact copy of this Project.
 Project TextUICommandLine.getProject()
           
 Project IFindBugsEngine.getProject()
          Get the Project.
 Project FindBugsCommandLine.getProject()
           
 Project FindBugs2.getProject()
           
 Project BugCollectionBugReporter.getProject()
           
 Project AddAnnotation.getProject()
           
static Project Project.readProject(java.lang.String argument)
          Read Project from named file.
static Project Project.readXML(java.io.File f)
           
 

Methods in edu.umd.cs.findbugs with parameters of type Project
 void Project.add(Project project2)
          add information from project2 to this project
static void FindBugs2.createAnalysisContext(Project project, java.util.List<ClassDescriptor> appClassList, java.lang.String sourceInfoFileName)
          Create the AnalysisContext that will serve as the BCEL-compatibility layer over the AnalysisCache.
static void SourceLineAnnotation.generateRelativeSource(java.io.File relativeSourceBase, Project project)
           
 void SortedBugCollection.readXML(java.io.File file, Project project)
          Read XML data from given file into this object, populating given Project as a side effect.
 void SortedBugCollection.readXML(java.io.InputStream in, Project project)
           
 void BugCollection.readXML(java.io.InputStream in, Project project)
          Read XML data from given input stream into this object, populating the Project as a side effect.
 void SortedBugCollection.readXML(java.io.InputStream in, Project project, java.io.File base)
          Read XML data from given input stream into this object, populating the Project as a side effect.
 void SortedBugCollection.readXML(java.lang.String fileName, Project project)
          Read XML data from given file into this object, populating given Project as a side effect.
 void BugCollection.readXML(java.lang.String fileName, Project project)
          Read XML data from given file into this object, populating given Project as a side effect.
 void AbstractBugReporter.reportBugsFromXml(java.io.InputStream in, Project theProject)
           
 void IFindBugsEngine.setProject(Project project)
          Set the Project.
 void FindBugs2.setProject(Project project)
           
 void DiscoverSourceDirectories.setProject(Project project)
          Set the Project for which we want to find source directories.
 org.dom4j.Document SortedBugCollection.toDocument(Project project)
          Convert the BugCollection into a dom4j Document object.
 org.dom4j.Document BugCollection.toDocument(Project project)
          Convert the BugCollection into a dom4j Document object.
 void SortedBugCollection.writePrologue(XMLOutput xmlOutput, Project project)
           
 void BugCollection.writePrologue(XMLOutput xmlOutput, Project project)
           
 void SortedBugCollection.writeXML(java.io.File file, Project project)
          Write this BugCollection to a file as XML.
 void SortedBugCollection.writeXML(java.io.OutputStream out, Project project)
          Write the BugCollection to given output stream as XML.
 void BugCollection.writeXML(java.io.OutputStream out, Project project)
          Write the BugCollection to given output stream as XML.
 void SortedBugCollection.writeXML(java.lang.String fileName, Project project)
          Write this BugCollection to a file as XML.
 void BugCollection.writeXML(java.lang.String fileName, Project project)
          Write this BugCollection to a file as XML.
 void SortedBugCollection.writeXML(XMLOutput xmlOutput, Project project)
          Write the BugCollection to an XMLOutput object.
 void BugCollection.writeXML(XMLOutput xmlOutput, Project project)
          Write the BugCollection to an XMLOutput object.
 

Constructors in edu.umd.cs.findbugs with parameters of type Project
AddAnnotation(BugCollection bugCollection, Project project, java.lang.String annotation)
           
BugCollectionBugReporter(Project project)
           
HTMLBugReporter(Project project, java.lang.String stylesheet)
           
NewResults(SortedBugCollection origCollection, SortedBugCollection newCollection, Project project)
           
SAXBugCollectionHandler(BugCollection bugCollection, Project project, java.io.File base)
           
SAXBugCollectionHandler(Project project, java.io.File base)
           
SAXBugCollectionHandler(java.lang.String topLevelName, BugCollection bugCollection, Project project, java.io.File base)
           
XDocsBugReporter(Project project)
           
XMLBugReporter(Project project)
           
 

Uses of Project in edu.umd.cs.findbugs.gui
 

Constructors in edu.umd.cs.findbugs.gui with parameters of type Project
AnalysisRun(Project project, FindBugsFrame frame)
          Creates a new instance of AnalysisRun.
 

Uses of Project in edu.umd.cs.findbugs.gui2
 

Methods in edu.umd.cs.findbugs.gui2 that return Project
 Project MainFrame.getProject()
           
static Project BugLoader.loadProject(MainFrame mainFrame, java.io.File f)
           
 

Methods in edu.umd.cs.findbugs.gui2 with parameters of type Project
static BugCollection BugLoader.combineBugHistories(Project project)
          TODO: This really needs to be rewritten such that they don't have to choose ALL xmls in one fel swoop.
static BugCollection BugLoader.doAnalysis(Project p)
          Does what it says it does, hit apple r (control r on pc) and the analysis is redone using the current project
static BugCollection BugLoader.doAnalysis(Project p, FindBugsProgress progressCallback)
          Performs an analysis and returns the BugSet created
static SortedBugCollection BugLoader.loadBugs(MainFrame mainFrame, Project project, java.io.File file)
           
static SortedBugCollection BugLoader.loadBugs(MainFrame mainFrame, Project project, java.io.InputStream in)
           
static SortedBugCollection BugLoader.loadBugs(MainFrame mainFrame, Project project, java.net.URL url)
           
static BugCollection BugLoader.redoAnalysisKeepComments(Project p)
          Does what it says it does, hit apple r (control r on pc) and the analysis is redone using the current project
static void BugSaver.saveBugs(java.io.File out, BugCollection data, Project p)
           
static void BugSaver.saveBugs(java.io.OutputStream out, BugCollection data, Project p)
           
 void MainFrame.setProject(Project p)
           
 

Constructors in edu.umd.cs.findbugs.gui2 with parameters of type Project
AnalyzingDialog(Project project, AnalysisCallback callback, boolean joinThread)
           
AnalyzingDialog(Project project, boolean changeSettings)
           
NewProjectWizard(Project curProject)
           
SourceDirectoryWizard(java.awt.Frame parent, boolean modal, Project project, NewProjectWizard parentGUI)
          Creates new form SourceDirectoryWizard
 

Uses of Project in edu.umd.cs.findbugs.workflow
 

Methods in edu.umd.cs.findbugs.workflow with parameters of type Project
 void BugHistory.writeResultCollection(Project origProject, Project newProject, java.io.OutputStream outputStream)
          Deprecated.  
 

Constructors in edu.umd.cs.findbugs.workflow with parameters of type Project
SourceSearcher(Project project)
           
 


FindBugs™ 1.3.8

FindBugs™ is licenced under the LGPL. Copyright © 2006 University of Maryland.