Class: ElseAction
- Inherits:
-
Action
- Object
- MacroObject
- Action
- ElseAction
- Defined in:
- lib/ruby-macrodroid.rb
Instance Attribute Summary
Attributes inherited from Action
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ ElseAction
constructor
A new instance of ElseAction.
- #to_s ⇒ Object
Methods inherited from Action
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ ElseAction
Returns a new instance of ElseAction.
2597 2598 2599 2600 2601 2602 2603 2604 2605 |
# File 'lib/ruby-macrodroid.rb', line 2597 def initialize(h={}) = { constraint_list: '' } super(.merge h) end |
Instance Method Details
#to_s ⇒ Object
2607 2608 2609 |
# File 'lib/ruby-macrodroid.rb', line 2607 def to_s() 'Else' end |