Partial implementation of XML parse for FindBugs output
[cfb.git] / prod / net / jaekl / cfb / xml / BugInstance.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 BugInstance extends ParseResult {
9
10         static final String ROOT_TAG = "BugInstance";
11         static final String[] INTERNAL = {  };
12         static final Object[][] EXTERNAL = { { BugClass.ROOT_TAG, BugClass.class},
13                                                  { BugMethod.ROOT_TAG, BugMethod.class},
14                                                  { SourceLine.ROOT_TAG, SourceLine.class} };
15
16         public BugInstance() {
17                 super(ROOT_TAG, INTERNAL, EXTERNAL);
18         }
19         
20         @Override
21         public void endContents(String uri, String localName, String qName,
22                         String chars, Attributes attr) throws XmlParseException {
23                 // TODO Auto-generated method stub
24
25         }
26
27         @Override
28         public void endExternal(String uri, String localName, String qName)
29                         throws XmlParseException {
30                 // TODO Auto-generated method stub
31
32         }
33
34 }