Package burp
Interface ITab
-
public interface ITabThis interface is used to provide Burp with details of a custom tab that will be added to Burp's UI, using a method such asIBurpExtenderCallbacks.addSuiteTab().
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetTabCaption()Burp uses this method to obtain the caption that should appear on the custom tab when it is displayed.java.awt.ComponentgetUiComponent()Burp uses this method to obtain the component that should be used as the contents of the custom tab when it is displayed.
-
-
-
Method Detail
-
getTabCaption
java.lang.String getTabCaption()
Burp uses this method to obtain the caption that should appear on the custom tab when it is displayed.- Returns:
- The caption that should appear on the custom tab when it is displayed.
-
getUiComponent
java.awt.Component getUiComponent()
Burp uses this method to obtain the component that should be used as the contents of the custom tab when it is displayed.- Returns:
- The component that should be used as the contents of the custom tab when it is displayed.
-
-