1 package net.sourceforge.phpeclipse.xdebug.php.launching;
3 import net.sourceforge.phpeclipse.xdebug.php.model.XDebugStackFrame;
5 import org.eclipse.core.runtime.CoreException;
6 import org.eclipse.debug.core.sourcelookup.AbstractSourceLookupParticipant;
8 public class PHPSourceLookupParticipant extends AbstractSourceLookupParticipant {
10 public String getSourceName(Object object) throws CoreException {
11 if (object instanceof XDebugStackFrame) {
12 return ((XDebugStackFrame) object).getSourceName();