我想为我接管的程序的调试模式添加一个额外的功能。
我希望能够在 GUI 上的所有按钮、表格中添加工具提示,以便它们在其中显示如下内容:
Class: JButton
Name: myShineyButton
Method: myShineyButtonActivateMethod
我知道使用反射的一般形式是这样的:
for(Fields bits: this.GetClass().getDeclaredFields){
if(bits instanceof Component){
String methodName = bits.getMethod().toString();
....
}
}
但是,如何将工具提示添加到 gui 上的每个项目?