* an <code>INotification</code>
*/
public void executeCommand(INotification note) {
//No reflexion in GWT
//ICommand commandInstance = (ICommand) commandClassRef.newInstance();
ICommand commandInstance = (ICommand) this.commandMap.get(note.getName());
if(commandInstance!=null){
commandInstance.initializeNotifier(multitonKey);
commandInstance.execute(note);
}
}