Partial implementation of XML parse for FindBugs output
[cfb.git] / prod / net / jaekl / cfb / xml / BugCollection.java
1 package net.jaekl.cfb.xml;
2
3 import org.xml.sax.Attributes;
4
5 import net.jaekl.qd.xml.ParseResult;
6 import net.jaekl.qd.xml.XmlParseException;
7
8 public class BugCollection extends ParseResult {
9
10         static final String ROOT_TAG = "BugCollection";
11         static final String[] INTERNAL = { };
12         static final Object[][] EXTERNAL = { { BugInstance.ROOT_TAG, BugInstance.class} };
13
14         public BugCollection() {
15                 super(ROOT_TAG, INTERNAL, EXTERNAL);
16         }
17         
18         @Override
19         public void endContents(String uri, String localName, String qName,
20                         String chars, Attributes attr) throws XmlParseException {
21                 // TODO Auto-generated method stub
22
23         }
24
25         @Override
26         public void endExternal(String uri, String localName, String qName)
27                         throws XmlParseException {
28                 // TODO Auto-generated method stub
29
30         }
31
32 }