gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r19727 - in monkey/branches/MonkeyBacktracking/monkey/Monke


From: gnunet
Subject: [GNUnet-SVN] r19727 - in monkey/branches/MonkeyBacktracking/monkey/MonkeyBugComparator: . src/org/monkey/comparator/bo
Date: Wed, 8 Feb 2012 00:56:12 +0100

Author: safey
Date: 2012-02-08 00:56:12 +0100 (Wed, 08 Feb 2012)
New Revision: 19727

Removed:
   monkey/branches/MonkeyBacktracking/monkey/MonkeyBugComparator/bin/
Modified:
   
monkey/branches/MonkeyBacktracking/monkey/MonkeyBugComparator/src/org/monkey/comparator/bo/XMLParser.java
Log:
Remove bin directory
Comment on the parse method

Modified: 
monkey/branches/MonkeyBacktracking/monkey/MonkeyBugComparator/src/org/monkey/comparator/bo/XMLParser.java
===================================================================
--- 
monkey/branches/MonkeyBacktracking/monkey/MonkeyBugComparator/src/org/monkey/comparator/bo/XMLParser.java
   2012-02-07 23:43:05 UTC (rev 19726)
+++ 
monkey/branches/MonkeyBacktracking/monkey/MonkeyBugComparator/src/org/monkey/comparator/bo/XMLParser.java
   2012-02-07 23:56:12 UTC (rev 19727)
@@ -12,6 +12,24 @@
 
 public class XMLParser {
        
+       /*
+        * The method parses Monkey's XML Bug Report.
+        * The following is an example the XML file the method expects for 
parsing
+        * <?xml version="1.0"?>
+               <crash category="npe" function="crashFunction" line="14" 
file="bug_null_pointer_exception.c" >
+                       <history>
+                       <epoch step="0" >
+                                       <trace>
+                                               <function name="crashFunction" 
line="14" file="bug_null_pointer_exception.c" depth="0" >
+                                                       <expressions>
+                                                               <expression 
name="crashStruct" >NULL</expression>
+                                                       </expressions>
+                                               </function>
+                                       </trace>
+                               </epoch>
+                       </history>
+               </crash>
+        */
        public static Bug parse(String filePath) {
                Bug bug = new Bug();
                try {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]