01: package org.drools.eclipse.launching;
02:
03: import org.eclipse.debug.core.sourcelookup.AbstractSourceLookupDirector;
04: import org.eclipse.debug.core.sourcelookup.ISourceLookupParticipant;
05:
06: public class DroolsSourceLookupDirector extends
07: AbstractSourceLookupDirector {
08:
09: public void initializeParticipants() {
10: addParticipants(new ISourceLookupParticipant[] {
11: new MVELSourceLookupParticipant(),
12: new DroolsSourceLookupParticipant() });
13: }
14:
15: }
|