获取Eclipse应用程序启动器名称

时间:2014-09-10 08:57:08

标签: eclipse-plugin eclipse-rcp p2

有人知道如何在代码中获取Eclipse应用程序的LauncherName吗?通常这是在.product文件中配置的,但我需要在我的代码中获取此值。

1 个答案:

答案 0 :(得分:2)

启动器的路径返回:

System.getProperty("eclipse.launcher");

和名称:

System.getProperty("eclipse.launcher.name");