if ( reference == null ) {
String command = (String)ReflectionHelper.getViaReflection( "getActionCommand", evt.getSource(), false );
if ( command != null ) {
XActionManager actionManager = (XActionManager)currentProject.getObject( "ActionManager" );
if ( actionManager != null ) {
XAction action = actionManager.getAction( null, command );
if ( action != null )
action.actionPerformed( evt );
}
}
return;
}