MCPcopy Index your code
hub / github.com/Maskhe/FastjsonScan / ITab

Interface ITab

FastjsonScan/src/burp/ITab.java:19–38  ·  view source on GitHub ↗

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() .

Source from the content-addressed store, hash-verified

17 * <code>IBurpExtenderCallbacks.addSuiteTab()</code>.
18 */
19public 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}

Callers

nothing calls this directly

Implementers 1

BurpExtenderFastjsonScan/src/burp/BurpExtender.jav

Calls

no outgoing calls

Tested by

no test coverage detected