在Eclipse中查找按钮代码

时间:2011-04-08 10:55:56

标签: eclipse class button

我试图在eclipse中看到与按钮关联的代码,但没有成功..

如何查看与按钮关联的所有代码?

另见find class associated by button id

2 个答案:

答案 0 :(得分:0)

  1. 双击按钮变量。
  2. ctrl + alt + h [打开通话层次结构]。这将调用该按钮变量的层次结构。
  3. 或者只是转到Search --> File Serach。并在项目中搜索变量。
  4. 要查看声明,请在变量名称上按F3ctrl + click

    同样在“搜索”菜单上,还有许多其他选项可用于在工作区或项目中查找引用。

答案 1 :(得分:0)

按Alt-Shift-F2并单击您感兴趣的按钮。这将打开“Plug-in Menu Spy”,并显示一个类似这样的弹出窗口(单击“Debug”工具栏时)按钮):

The active contribution item identifier:
    org.eclipse.debug.internal.ui.actions.DebugDropDownAction
The active contribution location URI:
    toolbar:org.eclipse.debug.ui.launchActionSet?after=org.eclipse.debug.internal.ui.actions.DebugDropDownAction
The active action set identifier:
    org.eclipse.debug.ui.launchActionSet

现在您知道贡献的操作是DebugDropDownAction,(如果您有正确的来源)可以使用“打开类型”(Ctrl-Shift-T)打开。

(还有一个“插件选择间谍”绑定到Alt-Shift-F1,它将显示有关当前选择的类似信息。)