> > Another option is that you can still have your forms over-ride a base > ActionForm and then at the end of the validate method, if you get > errors, you can then call super.validate() which will call your > mySpecificMethod(); of your Super class.
I was about to say something like this, but I don't think it works. validate() *returns* an instance of ActionErrors. So how does the base class' validate() method know the subclass' validate() method found any errors? Yeah, you can call super.validate(), but how do you check for that condition inside of the base class? There's no .saveErrors() method inside of the ActionForm classes --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]