# File src/org/puremvc/ruby/core/controller.rb, line 58
  def register_command(notification_name, command_class)
    @view.register_observer( notification_name, Observer.new(:execute_command, self) );
    @command_map[notification_name] = command_class
  end