Class: BurpExtender::ConsoleTab Private
- 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
- #tab_caption ⇒ Object private
- #ui_component ⇒ Object private
Instance Method Summary collapse
-
#initialize(component, caption = nil) ⇒ ConsoleTab
constructor
private
A new instance of ConsoleTab.
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, = nil @ui_component = component @tab_caption = || CAPTION end |
Instance Attribute Details
#tab_caption ⇒ 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.
7 8 9 |
# File 'lib/buby/burp_extender/console_tab.rb', line 7 def @tab_caption end |
#ui_component ⇒ 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.
7 8 9 |
# File 'lib/buby/burp_extender/console_tab.rb', line 7 def ui_component @ui_component end |