Author: dazarov
Date: 2009-11-04 07:15:14 -0500 (Wed, 04 Nov 2009)
New Revision: 18404
Modified:
trunk/common/plugins/org.jboss.tools.common.el.ui/src/org/jboss/tools/common/el/ui/refactoring/ELReferencesQueryParticipant.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-5093
Modified:
trunk/common/plugins/org.jboss.tools.common.el.ui/src/org/jboss/tools/common/el/ui/refactoring/ELReferencesQueryParticipant.java
===================================================================
---
trunk/common/plugins/org.jboss.tools.common.el.ui/src/org/jboss/tools/common/el/ui/refactoring/ELReferencesQueryParticipant.java 2009-11-04
12:04:51 UTC (rev 18403)
+++
trunk/common/plugins/org.jboss.tools.common.el.ui/src/org/jboss/tools/common/el/ui/refactoring/ELReferencesQueryParticipant.java 2009-11-04
12:15:14 UTC (rev 18404)
@@ -25,15 +25,13 @@
import org.eclipse.jdt.ui.search.IQueryParticipant;
import org.eclipse.jdt.ui.search.ISearchRequestor;
import org.eclipse.jdt.ui.search.QuerySpecification;
-import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.search.ui.text.Match;
-import org.eclipse.ui.PartInitException;
import org.jboss.tools.common.el.core.refactoring.ELProjectSetExtension;
import org.jboss.tools.common.el.core.refactoring.ProjectsSet;
import org.jboss.tools.common.el.core.refactoring.RefactorSearcher;
import org.jboss.tools.common.model.project.ProjectHome;
-public class ELReferencesQueryParticipant implements IQueryParticipant,
IMatchPresentation{
+public class ELReferencesQueryParticipant implements IQueryParticipant{
private ELSearcher searcher;
public int estimateTicks(QuerySpecification specification) {
@@ -41,7 +39,7 @@
}
public IMatchPresentation getUIParticipant() {
- return this;
+ return null;
}
public void search(ISearchRequestor requestor,
@@ -62,14 +60,6 @@
}
}
- public ILabelProvider createLabelProvider() {
- return null;
- }
-
- public void showMatch(Match match, int currentOffset,
- int currentLength, boolean activate) throws PartInitException {
- }
-
class ELSearcher extends RefactorSearcher{
ISearchRequestor requestor;
ProjectsSet projectSet=null;