JFace:如何获取 Action#run() 的调用者?

发布于 2024-12-22 10:20:50 字数 402 浏览 0 评论 0原文

我有一个用于树视图的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

折戟 2024-12-29 10:20:50

考虑使用新的命令 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文