Class: BurpExtender::ConsoleTab Private

Inherits:
Object
  • Object
show all
Includes:
Java::Burp::ITab
Defined in:
lib/buby/burp_extender/console_tab.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.

Constant Summary collapse

CAPTION =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

"Buby v#{Buby::Version::STRING}"

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(component, caption = nil) ⇒ ConsoleTab

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 ConsoleTab.



10
11
12
13
# File 'lib/buby/burp_extender/console_tab.rb', line 10

def initialize component, caption = nil
  @ui_component = component
  @tab_caption = caption || CAPTION
end

Instance Attribute Details

#tab_captionObject

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.



7
8
9
# File 'lib/buby/burp_extender/console_tab.rb', line 7

def tab_caption
  @tab_caption
end

#ui_componentObject

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.



7
8
9
# File 'lib/buby/burp_extender/console_tab.rb', line 7

def ui_component
  @ui_component
end