UnresolvedReferenceQuickFixProvider moved to platform

This commit is contained in:
Dmitry Avdeev
2009-12-29 15:24:11 +03:00
parent 00d794dda5
commit dea1f9ac87
4 changed files with 8 additions and 6 deletions
@@ -1871,7 +1871,7 @@ public class HighlightUtil {
HighlightInfo info = HighlightInfo.createHighlightInfo(type, refName, description);
UnresolvedReferenceQuickFixProvider.registerFixes(ref, new QuickFixActionRegistrarImpl(info), PsiJavaCodeReferenceElement.class);
UnresolvedReferenceQuickFixProvider.registerReferenceFixes(ref, new QuickFixActionRegistrarImpl(info));
return info;
}
@@ -1,49 +0,0 @@
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.codeInsight.quickfix;
import com.intellij.codeInsight.daemon.QuickFixActionRegistrar;
import com.intellij.openapi.extensions.ExtensionPointName;
import com.intellij.openapi.extensions.Extensions;
import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.project.DumbService;
import com.intellij.psi.PsiReference;
import org.jetbrains.annotations.NotNull;
public abstract class UnresolvedReferenceQuickFixProvider<T extends PsiReference> {
public static <T extends PsiReference> void registerFixes(T ref, QuickFixActionRegistrar registrar, Class<T> refClass) {
final boolean dumb = DumbService.getInstance(ref.getElement().getProject()).isDumb();
UnresolvedReferenceQuickFixProvider[] fixProviders = Extensions.getExtensions(EXTENSION_NAME);
for (UnresolvedReferenceQuickFixProvider each : fixProviders) {
if (dumb && !(each instanceof DumbAware)) {
continue;
}
if (refClass.equals(each.getReferenceClass())) {
each.registerFixes(ref, registrar);
}
}
}
private static final ExtensionPointName<UnresolvedReferenceQuickFixProvider> EXTENSION_NAME =
ExtensionPointName.create("com.intellij.codeInsight.unresolvedReferenceQuickFixProvider");
public abstract void registerFixes(T ref, QuickFixActionRegistrar registrar);
@NotNull
public abstract Class<T> getReferenceClass();
}