(Finally) reach the point where we have some useful, if basic, functionality.
[cfb.git] / prod / net / jaekl / cfb / xml / BugCollection.java
index 6fbf4460ec43d0b7105ae06d3b16b3bd7f68cac9..98ea93b422446de826716cbcce8f0da8511a3518 100644 (file)
@@ -22,6 +22,7 @@ public class BugCollection extends ParseResult {
        }
        
        public List<BugInstance> getBugs() { return Collections.unmodifiableList(m_bugs); }
+       public void add(BugInstance bug) { m_bugs.add(bug); }
        
        @Override
        public void endContents(String uri, String localName, String qName,     String chars)