gpt4 book ai didi

java - Eclipse 插件 : Is there a way to get the External Tools Configurations Tree?

转载 作者:行者123 更新时间:2023-11-30 08:32:57 25 4
gpt4 key购买 nike

有没有办法获得“外部工具配置...”窗口的橙色突出显示的树(参见 img)?

如果没有,我可以使用哪些官方 Eclipse-API 类来构建我自己的 TreeViewer?

这个问题here: Eclipse Plugin - get Launch Configurations Tree List in a Dialog和我的很相似。在那里,给出了官方的 Eclipse-API 类。另一种方法是使用 LaunchConfigurationFilteredTree,即使它不是官方 API。 ExternalTools 是否有类似的类?

enter image description here

最佳答案

外部工具对话框仍然只是启动配置,但只显示启动配置属于 org.eclipse.ui.externaltools.launchGroup 启动组的配置。

像往常一样,Eclipse 代码非常复杂,但您可以使用以下命令获取启动组

ILaunchGroup [] groups = DebugUITools.getLaunchGroups();

从数组中找到具有正确 ID 的组。

您可以使用

获取 ILaunchConfiguration 的启动组
ILaunchGroup group = DebugUITools.getLaunchGroup(config, mode);

对于外部工具,模式总是“运行”

关于java - Eclipse 插件 : Is there a way to get the External Tools Configurations Tree?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39721956/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com