Add the concept of "Project Name" to the RUNS table in the database.
[cfb.git] / prod / net / jaekl / cfb / analyze / Analyzer.java
index a7903ee3d3ef48c1f7173037b6ecd08e9fb8900c..d1aa115e9d6ab3418c1f20979ad3fa446d7737b8 100644 (file)
@@ -24,9 +24,10 @@ public class Analyzer {
                m_msgMap = msgMap;
        }
        
-       public Analysis analyze(PrintWriter pw, File workDir, File fbp, String buildNumber) throws IOException, XmlParseException, SAXException 
+       public Analysis analyze(PrintWriter pw, File workDir, File fbp, String projName, String buildNumber) 
+               throws IOException, XmlParseException, SAXException 
        {
-               Analysis result = new Analysis(buildNumber);
+               Analysis result = new Analysis(projName, buildNumber);
        
                File fbOutput = outputWorkFile(workDir, fbp);