Eclipse Plugin Dev - How to get running Java applications? -


i'm new eclipse plugin development. i'm trying find way information java applications running @ moment, , configuration launched from.

how able information?

edit: i'm not looking how create launch configuration, rather see applications running, launched through eclipse. basically, configurations have been launched, , still running through eclipse.

use ilaunchmanager.getprocesses() list of running processes launch manager knows about:

ilaunchmanager manager = debugplugin.getlaunchmanager();  iprocess [] processes = manager.getprocesses(); 

Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -