* @return true if event should be propogated, false if
* it should be cancelled.
*/
public boolean eventPosted(EventObject event) {
String command = ((ActionEvent)event).getActionCommand();
Command cmd =
_context.getActions().getActionCommand(command, _context, event);
if(cmd != null) {
cmd.run();
return false;
}
else {
// XXX log me.
System.err.println("Unhandled action: " + command);