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(colour: false) ⇒ Object
Methods inherited from Action
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ EndIfAction
Returns a new instance of EndIfAction.
3058 3059 3060 3061 3062 3063 3064 3065 3066 |
# File 'lib/ruby-macrodroid.rb', line 3058 def initialize(h={}) = { constraint_list: '' } super(.merge h) end |
Instance Method Details
#to_s(colour: false) ⇒ Object
3068 3069 3070 |
# File 'lib/ruby-macrodroid.rb', line 3068 def to_s(colour: false) 'End If' end |