JFace:如何获取 Action#run() 的调用者?
我有一个用于树视图的 ContentProvider。我在那里添加了一些可以对树的项目执行的操作。该方法如下所示:
private void makeActions() {
action1 = new Action() {
@Override
public void runWithEvent(Event event) {
System.out.println(event);
System.out.println(event.data.getClass());
//How can I find the caller of runWithEvent?
}
};
如何找到导致调用 Action#runWithEvent 的树对象?
I have a ContentProvider for a Tree view. There I add some actions that can be performed on an item of the tree. The method looks like this:
private void makeActions() {
action1 = new Action() {
@Override
public void runWithEvent(Event event) {
System.out.println(event);
System.out.println(event.data.getClass());
//How can I find the caller of runWithEvent?
}
};
How can I find the object of the tree that has caused the call of Action#runWithEvent?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
考虑使用新的命令 API 而不是旧的操作 API。在新的 API 中,您可以轻松访问命令处理程序中的相关信息。
Consider using the new Command API instead of the older Action API. In the new API, you can easily access the relevant information in the handler for the command.