标签: eclipse-plugin eclipse-rcp p2
有人知道如何在代码中获取Eclipse应用程序的LauncherName吗?通常这是在.product文件中配置的,但我需要在我的代码中获取此值。
答案 0 :(得分:2)
启动器的路径返回:
System.getProperty("eclipse.launcher");
和名称:
System.getProperty("eclipse.launcher.name");