()
| 775 | SwingUtilities.invokeLater(new Runnable() |
| 776 | { |
| 777 | public void run() |
| 778 | { |
| 779 | BurpExtender.this.CGUI(); |
| 780 | BurpExtender.this.callbacks.addSuiteTab(BurpExtender.this); //这里的BurpExtender.this实质是指ITab对象,也就是getUiComponent()中的contentPane.这个参数由CGUI()函数初始化。 |
| 781 | //如果这里报java.lang.NullPointerException: Component cannot be null 错误,需要排查contentPane的初始化是否正确。 |
| 782 | } |
| 783 | }); |
| 784 | } |
| 785 |
nothing calls this directly
no test coverage detected