import net.sourceforge.phpeclipse.PHPeclipsePlugin;
import net.sourceforge.phpeclipse.phpeditor.PHPEditor;
import net.sourceforge.phpeclipse.phpmanual.PHPManualUIPlugin;
+import net.sourceforge.phpeclipse.ui.WebUI;
import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.Path;
if (part != null && !((PHPEditor)part).equals(lastEditor)) {
SelectionListenerWithASTManager.getDefault().addListener((PHPEditor)part, this);
lastEditor = (PHPEditor)part;
- } else {
- System.out.println(part);
}
}
} catch (Exception e) {
return null;
}
- return "<html>" + PHPManualUIPlugin.getString("LookupMiss") + "</html>";
+ return null; // Keeps the last reference
}
/**
*/
private PHPEditor getJavaEditor() {
try {
- IEditorPart part = PHPeclipsePlugin.getActivePage().getActiveEditor();
+ IEditorPart part = /*PHPeclipsePlugin*/WebUI.getActivePage().getActiveEditor();
if (part instanceof PHPEditor)
return (PHPEditor) part;
else