Class: EndLoopAction
- Inherits:
-
Action
- Object
- MacroObject
- Action
- EndLoopAction
- Defined in:
- lib/ruby-macrodroid/actions.rb
Overview
Conditions/Loops
Instance Attribute Summary
Attributes inherited from Action
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ EndLoopAction
constructor
A new instance of EndLoopAction.
- #to_s(colour: false, indent: 0) ⇒ Object
Methods inherited from Action
Methods included from ObjectX
#action_to_object, #object_create, #varify
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ EndLoopAction
Returns a new instance of EndLoopAction.
539 540 541 542 543 544 545 546 547 548 549 550 551 |
# File 'lib/ruby-macrodroid/actions.rb', line 539 def initialize(h={}) = { } h2 = .merge(h) super(h2) @label = 'End Loop ' end |
Instance Method Details
#to_s(colour: false, indent: 0) ⇒ Object
553 554 555 556 557 |
# File 'lib/ruby-macrodroid/actions.rb', line 553 def to_s(colour: false, indent: 0) 'End Loop ' end |