|
From: sysadmin <sys...@zy...> - 2003-10-11 23:42:28
|
Hi,
I have been playing with JGB for last couple of weeks and I am quite
impressed so far. Great work !
I am wondering what other tags can we expect in the future, say for version
1.0 ? Is there a published feature set or something like that ? From reading
archived messages, I see that tags for JTable and possibly JTree are in the
works, what else ?
I think I have found a bug in SheetTagHandler.java : basically, sheet object
is never put on to object map, therefore, a NullPointer exception is
generated if sheet object is referenced later in a <ref refid="sheet"/>
entry. Adding following three lines of code at end of "enterElement" method
will fix the problem:
if (atts.containsKey(ATTR_ID)) {
putObject((String)atts.get(ATTR_ID), sheet);
}
YZ
|