Improve XML parsing to handle attributes as well.
[cfb.git] / prod / net / jaekl / cfb / xml / BugClass.java
index 34e02a242de215902d60fd284af1f4964e20caa6..40cc84b8a3874dd550be2e201ffec705f928d040 100644 (file)
@@ -1,32 +1,67 @@
 package net.jaekl.cfb.xml;
 
+import java.io.PrintWriter;
+import java.util.ArrayList;
+
 import org.xml.sax.Attributes;
 
+import net.jaekl.qd.xml.MissingAttributeException;
 import net.jaekl.qd.xml.ParseResult;
 import net.jaekl.qd.xml.XmlParseException;
 
 public class BugClass extends ParseResult {
        
-       static final String ROOT_TAG = "Class";
+       static final String TAG = "Class";
        static final String[] INTERNAL = { };
-       static final Object[][] EXTERNAL = { { SourceLine.ROOT_TAG, SourceLine.class} };
+       static final Object[][] EXTERNAL = { { SourceLine.TAG, SourceLine.class} };
 
+       static final String CLASS_NAME = "classname";
+       
+       String m_className;
+       ArrayList<SourceLine> m_lines;
+       
        public BugClass() {
-               super(ROOT_TAG, INTERNAL, EXTERNAL);
+               super(TAG, INTERNAL, EXTERNAL);
+               m_className = "";
+               m_lines = new ArrayList<SourceLine>();
+       }
+
+       @Override
+       public void handleMainAttributes(Attributes attr) throws MissingAttributeException 
+       {
+               m_className = getRequiredAttr(TAG, attr, CLASS_NAME);
        }
        
        @Override
-       public void endContents(String uri, String localName, String qName,
-                       String chars, Attributes attr) throws XmlParseException {
-               // TODO Auto-generated method stub
-
+       public void endContents(String uri, String localName, String qName,     String chars) 
+               throws XmlParseException 
+       {
        }
 
+    @Override
+    public void endExternal(String uri, String localName, String qName) 
+       throws XmlParseException
+    {
+               if (SourceLine.TAG.equals(localName)) {
+                       ParseResult[] collected = collectParsedChildren(SourceLine.class);
+                       for (ParseResult pr : collected) {
+                               assert(pr instanceof SourceLine);
+                               m_lines.add((SourceLine)pr);
+                       }
+               }
+    }
+    
        @Override
-       public void endExternal(String uri, String localName, String qName)
-                       throws XmlParseException {
-               // TODO Auto-generated method stub
-
+       public void dump(PrintWriter pw, int indent) 
+       {
+               super.dump(pw, indent);
+               String tab = String.format("%" + (indent + 2) + "s", "");
+               
+               pw.println(tab + CLASS_NAME + "=" + m_className);
+               if (null != m_lines) {
+                       for (SourceLine sl : m_lines) {
+                               sl.dump(pw, indent + 2);
+                       }
+               }
        }
-
 }