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.



1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
# File 'lib/ruby-macrodroid.rb', line 1874

def initialize(h={})

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

  super(options.merge h)

end