/* * Copyright 2000-2015 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.daemon; import com.intellij.psi.PsiElement; import com.intellij.psi.PsiNameIdentifierOwner; import org.jetbrains.annotations.NotNull; import java.util.Collection; import java.util.List; /** * Override this class and register the implementation as {@code codeInsight.lineMarkerProvider} extension to provide both line marker and * 'Go to related symbol' targets. * * @author nik */ public abstract class RelatedItemLineMarkerProvider extends LineMarkerProviderDescriptor { @Override public RelatedItemLineMarkerInfo getLineMarkerInfo(@NotNull PsiElement element) { return null; } @Override public final void collectSlowLineMarkers(@NotNull List<PsiElement> elements, @NotNull Collection<LineMarkerInfo> result) { collectNavigationMarkers(elements, result, false); } public void collectNavigationMarkers(List<PsiElement> elements, Collection<? super RelatedItemLineMarkerInfo> result, boolean forNavigation) { //noinspection ForLoopReplaceableByForEach for (int i = 0, size = elements.size(); i < size; i++) { PsiElement element = elements.get(i); collectNavigationMarkers(element, result); if (forNavigation && element instanceof PsiNameIdentifierOwner) { PsiElement nameIdentifier = ((PsiNameIdentifierOwner)element).getNameIdentifier(); if (nameIdentifier != null && !elements.contains(nameIdentifier)) { collectNavigationMarkers(nameIdentifier, result); } } } } protected void collectNavigationMarkers(@NotNull PsiElement element, Collection<? super RelatedItemLineMarkerInfo> result) { } @Override public String getName() { return null; } }