This interface is used to provide Burp with details of a custom tab that will be added to Burp's UI, using a method such as IBurpExtenderCallbacks.addSuiteTab() .
| 17 | * <code>IBurpExtenderCallbacks.addSuiteTab()</code>. |
| 18 | */ |
| 19 | public interface ITab |
| 20 | { |
| 21 | /** |
| 22 | * Burp uses this method to obtain the caption that should appear on the |
| 23 | * custom tab when it is displayed. |
| 24 | * |
| 25 | * @return The caption that should appear on the custom tab when it is |
| 26 | * displayed. |
| 27 | */ |
| 28 | String getTabCaption(); |
| 29 | |
| 30 | /** |
| 31 | * Burp uses this method to obtain the component that should be used as the |
| 32 | * contents of the custom tab when it is displayed. |
| 33 | * |
| 34 | * @return The component that should be used as the contents of the custom |
| 35 | * tab when it is displayed. |
| 36 | */ |
| 37 | Component getUiComponent(); |
| 38 | } |
nothing calls this directly
no outgoing calls
no test coverage detected