X-Git-Url: http://jaekl.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=prod%2Fnet%2Fjaekl%2Fcfb%2Fxml%2Fmessages%2FBugCategory.java;h=757aacfb124472981e597da46b6c826da810e1ed;hb=598968590bf67cf87d3243878f7ebb2ff8015065;hp=9e1f53920766e89bd2d8fbd384761b9f58d174ec;hpb=58107a0cbb49652e7772ce80fb73d2c027590eb1;p=cfb.git diff --git a/prod/net/jaekl/cfb/xml/messages/BugCategory.java b/prod/net/jaekl/cfb/xml/messages/BugCategory.java index 9e1f539..757aacf 100644 --- a/prod/net/jaekl/cfb/xml/messages/BugCategory.java +++ b/prod/net/jaekl/cfb/xml/messages/BugCategory.java @@ -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 {