|
From: Trevor C. <pr...@se...> - 2003-09-24 20:16:04
|
Is there a specific reason that "doStartTagInternal" is abstract. You are
not required to have a "doStart", so you can place your code in the "doEnd"
method (some of my tags do). A more reusable solution would be to have the
following:
protected int doStartTagInternal() throws Exception {
return super().doStartTag();
}
which could still be overridden by subclasses but does not require an
implementation (and will function according to spec without one).
Again, I can commit this unless there are any major objections.
Trevor
|