85a3efa68704443e2741aa6a4df906bad246f586
[phpeclipse.git] /
1 package net.sourceforge.phpeclipse.xdebug.php.launching;
2
3 import org.eclipse.debug.core.sourcelookup.AbstractSourceLookupDirector;
4 import org.eclipse.debug.core.sourcelookup.ISourceLookupParticipant;
5
6 public class PHPSourceLookupDirector extends AbstractSourceLookupDirector {
7
8         public void initializeParticipants() {
9                 addParticipants(new ISourceLookupParticipant[] {new PHPSourceLookupParticipant()});
10         }
11
12 }