Some progress toward implementing store(Analysis).
[cfb.git] / prod / net / jaekl / cfb / xml / messages / BugCategory.java
index 9e1f53920766e89bd2d8fbd384761b9f58d174ec..757aacfb124472981e597da46b6c826da810e1ed 100644 (file)
@@ -20,6 +20,7 @@ public class BugCategory extends ParseResult {
        String m_descr;
        String m_abbrev;
        String m_details;
+       long m_id;
        
        public BugCategory() 
        {
@@ -32,6 +33,9 @@ public class BugCategory extends ParseResult {
        public String getAbbrev() { return m_abbrev; }
        public String getDetails() { return m_details; }
 
+       public void setId(long id) { m_id = id; }
+       public long getId() { return m_id; }
+
        @Override
        public void endContents(String uri, String localName, String qName, String chars) throws XmlParseException 
        {