[devkit] EP line markers: use getEffectiveQualifiedName()

GitOrigin-RevId: 2ae7619d0753de2d53f06c98d4538400a3ebeb28
This commit is contained in:
Yann Cébron
2020-06-29 18:13:27 +02:00
committed by intellij-monorepo-bot
parent b4a2eb0190
commit 1ca5700306
3 changed files with 20 additions and 26 deletions

View File

@@ -1,18 +1,4 @@
/*
* Copyright 2000-2014 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.
*/
// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package org.jetbrains.idea.devkit.navigation;
import com.intellij.codeInsight.daemon.GutterMark;
@@ -74,7 +60,7 @@ public class ExtensionPointDeclarationRelatedItemLineMarkerProviderTest extends
String color = ColorUtil.toHex(UIUtil.getInactiveTextColor());
int expectedTagPosition = file.getText().indexOf("<extensionPoint name=\"myStringEP\" interface=\"java.lang.String\"/>");
String expectedTooltip = "<html><body>&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"#navigation/" + path
+ ":" + expectedTagPosition + "\">myStringEP</a> EP declaration in plugin.xml " +
+ ":" + expectedTagPosition + "\">com.intellij.myStringEP</a> EP declaration in plugin.xml " +
"<font color=" + color + ">[" + module.getName() + "]</font><br></body></html>";
final GutterMark gutter = myFixture.findGutter(filePath);