Class: BurpExtender::JCheckBoxMenuItem Private
- Inherits:
-
Java::JavaxSwing::JCheckBoxMenuItem
- Object
- Java::JavaxSwing::JCheckBoxMenuItem
- BurpExtender::JCheckBoxMenuItem
- Defined in:
- lib/buby/burp_extender/jcheck_box_menu_item.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #burp ⇒ Object private
Instance Method Summary collapse
-
#initialize(burp_extender, *args, &block) ⇒ JCheckBoxMenuItem
constructor
private
A new instance of JCheckBoxMenuItem.
Constructor Details
#initialize(burp_extender, *args, &block) ⇒ JCheckBoxMenuItem
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of JCheckBoxMenuItem.
4 5 6 7 8 9 10 |
# File 'lib/buby/burp_extender/jcheck_box_menu_item.rb', line 4 def initialize(burp_extender, *args, &block) super *args @burp = burp_extender if block_given? addActionListener &block end end |
Instance Attribute Details
#burp ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
3 4 5 |
# File 'lib/buby/burp_extender/jcheck_box_menu_item.rb', line 3 def burp @burp end |