A FormHandler can be registered with a {@link org.apache.cocoon.woody.formmodel.Form Form}, and will then receive all events fired by widgets on the form.
It provides an alternative way of handling events, instead of specifying the eventhandlers in the form definition.
It is useful when you want to write your event-handling code in Java, have all events handled by one class (which could of course again delegate to other classes), and when you want the event handler to have access to objects it would not be able to get access to if they were part of the form definition.
@version CVS $Id: FormHandler.java,v 1.5 2004/03/09 13:54:13 reinhard Exp $