Class: Fumoffu::Handler
- Includes:
- Utils::ComponentSearch
- Defined in:
- lib/fumoffu/handler.rb
Instance Method Summary collapse
-
#handleAction(evt, action, caller) ⇒ Object
This method must be overidden.
-
#initialize ⇒ Handler
constructor
A new instance of Handler.
Methods included from Utils::ComponentSearch
#component_by_name, #component_child_by_name
Constructor Details
#initialize ⇒ Handler
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 |