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) ⇒ Object
Methods inherited from Action
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ EndLoopAction
Returns a new instance of EndLoopAction.
334 335 336 337 338 339 340 341 342 343 344 345 346 |
# File 'lib/ruby-macrodroid/actions.rb', line 334 def initialize(h={}) = { } h2 = .merge(h) super(h2) @label = 'End Loop ' end |
Instance Method Details
#to_s(colour: false) ⇒ Object
348 349 350 351 352 |
# File 'lib/ruby-macrodroid/actions.rb', line 348 def to_s(colour: false) 'End Loop ' end |