Home > Net >  Programmatically how do I get at -VM option in eclipse.ini file entries
Programmatically how do I get at -VM option in eclipse.ini file entries

Time:03-30

Sorry guys may be a silly question. Eclipse starts by using a .ini file. How do I find the value of -vm in a plugin that I may develop?

Programmatically from my plugin.java code?

Regards, Jemrug

CodePudding user response:

You can programmatically get the value of -vm with System.getProperty("eclipse.vm").

See also Help > About Eclipse IDE: Installation Details, tab Configuration section *** System properties:.

  • Related