public abstract class IdeRunner
extends java.lang.Object
IdeRunner is paired with an IdeStarter.
 The starter starts the IDE; the runner executes the command once the IDE is 
 initialized (two classes are required because of differences in class loader 
 context).
 
 The actual IdeRunner and IdeStarter implementation classes 
 to use are typically specified in the .conf file; the IDE launcher chooses 
 the .conf file based on the first argument of the command line.
| Constructor and Description | 
|---|
IdeRunner()  | 
| Modifier and Type | Method and Description | 
|---|---|
abstract void | 
runCommand(IdeStarter starter)
Runs an IDE command after the IDE is initialized. 
 | 
public abstract void runCommand(IdeStarter starter)
starter - The IDE starter which started the IDE.