Class: OpenFileAction

Inherits:
Action show all
Defined in:
lib/ruby-macrodroid.rb

Instance Method Summary collapse

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(h = {}) ⇒ OpenFileAction

Returns a new instance of OpenFileAction.



1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
# File 'lib/ruby-macrodroid.rb', line 1691

def initialize(h={})

  options = {
    app_name: '',
    class_name: '',
    package_name: '',
    file_path: ''
  }

  super(options.merge h)

end