Reputation: 39
Does someone know how to get the LauncherName of an Eclipse application inside the code? Usually this is configured in the .product file, but I need to get this value in my code.
Upvotes: 0
Views: 427
Reputation: 111142
The path of the launcher is returned by:
System.getProperty("eclipse.launcher");
and the name by:
System.getProperty("eclipse.launcher.name");
Upvotes: 2