this.commandRegistry.removeCommandRegistryListener(l);
}
public TargetableActionCommand createTargetableActionCommand(String commandId, ActionCommandExecutor delegate) {
Assert.notNull(commandId, "Registered targetable action commands must have an id.");
TargetableActionCommand newCommand = new TargetableActionCommand(commandId, delegate);
registerCommand(newCommand);
return newCommand;
}