Kovalan V
Kovalan V

Reputation: 39

Getting the Eclipse application launcher name

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

Answers (1)

greg-449
greg-449

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

Related Questions