6970717273747576777879
/** * Constructor. Creates an empty plan. */ public ExecutionPlan() { this.pluginList = new LinkedList<Plugin>(); this.factoryChooser = new DetectorFactoryChooser() { @Override public boolean choose(DetectorFactory factory) { return true; }