[i18n] annotate documentation-related EP implementations

GitOrigin-RevId: 6c7902de7362d28fe8b96a68b49116396fbcb702
This commit is contained in:
Daniil Ovchinnikov
2021-08-12 16:01:24 +02:00
committed by intellij-monorepo-bot
parent 5ab40ce2d0
commit cb21247c48
36 changed files with 120 additions and 144 deletions

View File

@@ -1,4 +1,4 @@
// 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.
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package org.intellij.lang.regexp;
import com.intellij.lang.ASTNode;
@@ -37,7 +37,7 @@ public final class RegExpDocumentationProvider extends AbstractDocumentationProv
@Override
@Nullable
public String getQuickNavigateInfo(PsiElement element, PsiElement originalElement) {
public @Nls String getQuickNavigateInfo(PsiElement element, PsiElement originalElement) {
if (element instanceof RegExpGroup) {
final RegExpGroup group = (RegExpGroup)element;
return StringUtil.escapeXmlEntities(group.getUnescapedText());