Add local variable information to DB store.
[cfb.git] / prod / net / jaekl / cfb / xml / BugMethod.java
index 80afa93392a69b632cd3c9023982a5fc18d9c850..4e5fc47ceb6f1c6c4c61fdcf45975cb9a0f449ef 100644 (file)
@@ -37,6 +37,11 @@ public class BugMethod extends ParseResult {
                m_sourceLines = new ArrayList<SourceLine>();
        }
        
+       public String getClassName() { return m_className; }
+       public String getMethodName() { return m_methodName; }
+       public String getRole() { return m_role; }
+       public SourceLine[] getSourceLines() { return m_sourceLines.toArray(new SourceLine[m_sourceLines.size()]); }
+       
        @Override
        public void handleMainAttributes(Attributes attr) throws MissingAttributeException 
        {