Class: Nobbie::Wx::Command::TypeIntoCommand
- Inherits:
-
ComponentAwareCommand
- Object
- ComponentAwareCommand
- Nobbie::Wx::Command::TypeIntoCommand
- Defined in:
- lib/nobbie/wx/command/type_into.rb
Overview
:nodoc:
Instance Method Summary collapse
- #describe ⇒ Object
- #execute ⇒ Object
-
#initialize(path, value) ⇒ TypeIntoCommand
constructor
A new instance of TypeIntoCommand.
Methods inherited from ComponentAwareCommand
#component, #ensure_enabled, #handle_unsupported_operation_for_component, #handle_value_not_found, #highlight
Constructor Details
#initialize(path, value) ⇒ TypeIntoCommand
Returns a new instance of TypeIntoCommand.
6 7 8 9 |
# File 'lib/nobbie/wx/command/type_into.rb', line 6 def initialize(path, value) super(path) @value = value end |
Instance Method Details
#describe ⇒ Object
21 22 23 |
# File 'lib/nobbie/wx/command/type_into.rb', line 21 def describe "Type #{@value} into #{@value}" end |