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.



5
6
7
# File 'lib/fumoffu/handler.rb', line 5

def initialize
  @controllers = Hash.new
end

Instance Method Details

#handleAction(evt, action, caller) ⇒ Object



10
11
12
13
# File 'lib/fumoffu/handler.rb', line 10

def handleAction evt, action, caller
   # DO NOTHING - this method shall be implemented by the children
   return false
end