Class: EndIfAction

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

Instance Attribute Summary

Attributes inherited from Action

#constraints

Attributes inherited from MacroObject

#options, #siguid, #type

Instance Method Summary collapse

Methods inherited from Action

#invoke

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(h = {}) ⇒ EndIfAction

Returns a new instance of EndIfAction.



2703
2704
2705
2706
2707
2708
2709
2710
2711
# File 'lib/ruby-macrodroid.rb', line 2703

def initialize(h={})

  options = {
    constraint_list: ''
  }

  super(options.merge h)

end

Instance Method Details

#to_sObject



2713
2714
2715
# File 'lib/ruby-macrodroid.rb', line 2713

def to_s()
  'End If'
end