This post originated from an RSS feed registered with Java Buzz
by Joe Shelby.
Original Post: Comments on java.beans.EventHandler
Feed Title: Joe's Java Jottings
Feed URL: http://www.blog-city.com/bc/
Feed Description: Notes, observations, and occasional other stuff on Java, with concentrations on Swing, XML, and the Semantic (Object) Web.
xam commented on how the java.beans.EventHandler, while seemingly useful (uses reflection to build an instance of an event listener to call a specific method, avoiding having to implement one yourself, either directly or via inner classes), has problems in that it only works on public methods. Follow-up comments addressed how it catches and dumps exceptions to the screen, a bad user-interface anti-pattern.
There is no solution for