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
Post a Comment