Class: Fumoffu::Handler

Inherits:
Object show all
Includes:
Utils::ComponentSearch
Defined in:
lib/fumoffu/handler.rb

Instance Method Summary collapse

Methods included from Utils::ComponentSearch

#component_by_name, #component_child_by_name

Constructor Details

#initializeHandler

Returns a new instance of Handler.



7
8
9
# File 'lib/fumoffu/handler.rb', line 7

def initialize
  @controllers = Hash.new
end

Instance Method Details

#handleAction(evt, action, caller) ⇒ Object

This method must be overidden



12
13
14
15
# 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