Class: EmptyTrigger
- Inherits:
-
Trigger
- Object
- MacroObject
- Trigger
- EmptyTrigger
- Defined in:
- lib/ruby-macrodroid/triggers.rb
Overview
Category: MacroDroid Specific
Instance Attribute Summary
Attributes inherited from Trigger
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ EmptyTrigger
constructor
A new instance of EmptyTrigger.
- #to_s(colour: false) ⇒ Object (also: #to_summary)
Methods inherited from Trigger
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ EmptyTrigger
Returns a new instance of EmptyTrigger.
1334 1335 1336 1337 1338 1339 1340 1341 1342 |
# File 'lib/ruby-macrodroid/triggers.rb', line 1334 def initialize(h={}) = { } super(.merge h) end |
Instance Method Details
#to_s(colour: false) ⇒ Object Also known as: to_summary
1344 1345 1346 |
# File 'lib/ruby-macrodroid/triggers.rb', line 1344 def to_s(colour: false) 'EmptyTrigger' end |