# File lib_wpm/wpm.rb, line 3188
    def set_property(name, attr_map, value)
      case (name)
      when 'action'
        @action = get_property(attr_map, value, 'method', 'eval')
      when 'value'
        @value = get_property(attr_map, value, 'string', 'accessor', 'eval')
      else
        super
      end

      nil
    end