b570c4b601ed2c1e7f32e2ad339b1f9a96fb2690
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / launching / PHPSourceLookupDirector.java
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 }