package net.sourceforge.phpeclipse.xdebug.php.launching; import org.eclipse.debug.core.sourcelookup.AbstractSourceLookupDirector; import org.eclipse.debug.core.sourcelookup.ISourceLookupParticipant; public class PHPSourceLookupDirector extends AbstractSourceLookupDirector { public void initializeParticipants() { addParticipants(new ISourceLookupParticipant[] {new PHPSourceLookupParticipant()}); } }