class Fumoffu::Handler

Public Class Methods

new() click to toggle source
# File lib/fumoffu/handler.rb, line 7
def initialize
  @controllers = Hash.new
end

Public Instance Methods

handleAction(evt, action, caller) click to toggle source

This method must be overidden

# File lib/fumoffu/handler.rb, line 12
def handleAction evt, action, caller
   # DO NOTHING - this method shall be implemented by the children
   return false
end