Class: KillBackgroundAppAction
- Inherits:
-
ApplicationAction
- Object
- MacroObject
- Action
- ApplicationAction
- KillBackgroundAppAction
- Defined in:
- lib/ruby-macrodroid.rb
Overview
Category: Applications
Instance Attribute Summary
Attributes inherited from Action
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ KillBackgroundAppAction
constructor
A new instance of KillBackgroundAppAction.
- #to_s(colour: false) ⇒ Object (also: #to_summary)
Methods inherited from Action
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ KillBackgroundAppAction
Returns a new instance of KillBackgroundAppAction.
2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 |
# File 'lib/ruby-macrodroid.rb', line 2889 def initialize(h={}) = { application_name_list: [""], package_name_list: [""] } super(.merge h) end |
Instance Method Details
#to_s(colour: false) ⇒ Object Also known as: to_summary
2900 2901 2902 |
# File 'lib/ruby-macrodroid.rb', line 2900 def to_s(colour: false) 'KillBackgroundAppAction ' + @h.inspect end |