Sha256: b43533fc8b61db0562a749e899c0743899f248885830754ccffc6aeeaac5a186

Contents?: true

Size: 404 Bytes

Versions: 6

Compression:

Stored size: 404 Bytes

Contents

require 'buby/burp_extender/context_menu'

class BurpExtender
  # @api private
  class ContextMenuFactory
    attr_accessor :burp
    include Java::Burp::IContextMenuFactory
    def initialize burp_extender
      @burp = burp_extender
    end

    def createMenuItems invocation
      pp [:createMenuItems, invocation] if $DEBUG
      [BurpExtender::ContextMenu.new(@burp, invocation)]
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
buby-1.6.0-java lib/buby/burp_extender/context_menu_factory.rb
buby-1.5.2-java lib/buby/burp_extender/context_menu_factory.rb
buby-1.5.1-java lib/buby/burp_extender/context_menu_factory.rb
buby-1.5.0-java lib/buby/burp_extender/context_menu_factory.rb
buby-1.5.0.pre4-java lib/buby/burp_extender/context_menu_factory.rb
buby-1.5.0.pre3-java lib/buby/burp_extender/context_menu_factory.rb