Class: EndIfAction
- Inherits:
-
Action
- Object
- MacroObject
- Action
- EndIfAction
- Defined in:
- lib/ruby-macrodroid.rb
Instance Attribute Summary
Attributes inherited from Action
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ EndIfAction
constructor
A new instance of EndIfAction.
- #to_s ⇒ Object
Methods inherited from Action
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ EndIfAction
Returns a new instance of EndIfAction.
2614 2615 2616 2617 2618 2619 2620 2621 2622 |
# File 'lib/ruby-macrodroid.rb', line 2614 def initialize(h={}) = { constraint_list: '' } super(.merge h) end |
Instance Method Details
#to_s ⇒ Object
2624 2625 2626 |
# File 'lib/ruby-macrodroid.rb', line 2624 def to_s() 'End If' end |