Add local variable information to DB store.
[cfb.git] / prod / net / jaekl / cfb / xml / BugInstance.java
index 4c78f8d5606d62ed6ab991e3248236801ac94ab5..3386e3f70fd2d47da0d820e174c617f5592e73b5 100644 (file)
@@ -44,6 +44,7 @@ public class BugInstance extends ParseResult {
        public List<BugClass> getClasses() { return Collections.unmodifiableList(m_classes); }
        public List<BugMethod> getMethods() { return Collections.unmodifiableList(m_methods); }
        public List<SourceLine> getLines() { return Collections.unmodifiableList(m_lines); }
+       public List<LocalVariable> getVariables() { return Collections.unmodifiableList(m_locals); }
        
        @Override
        public void endContents(String uri, String localName, String qName, String chars)