当前位置: 首页>>代码示例>>Java>>正文


Java PsiDocComment.findTagByName方法代码示例

本文整理汇总了Java中com.intellij.psi.javadoc.PsiDocComment.findTagByName方法的典型用法代码示例。如果您正苦于以下问题:Java PsiDocComment.findTagByName方法的具体用法?Java PsiDocComment.findTagByName怎么用?Java PsiDocComment.findTagByName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.intellij.psi.javadoc.PsiDocComment的用法示例。


在下文中一共展示了PsiDocComment.findTagByName方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: isDeprecated

import com.intellij.psi.javadoc.PsiDocComment; //导入方法依赖的package包/类
@Override
public boolean isDeprecated() {
  final PsiFieldStub stub = getStub();
  if (stub != null) {
    return stub.isDeprecated();
  }

  PsiDocComment docComment = getDocComment();
  return docComment != null && docComment.findTagByName("deprecated") != null ||
         getModifierList().findAnnotation("java.lang.Deprecated") != null;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:12,代码来源:PsiEnumConstantImpl.java

示例2: getSuppressedInspectionIdsIn

import com.intellij.psi.javadoc.PsiDocComment; //导入方法依赖的package包/类
public static String getSuppressedInspectionIdsIn(@NotNull PsiElement element) {
  if (element instanceof PsiComment) {
    String text = element.getText();
    Matcher matcher = SuppressionUtil.SUPPRESS_IN_LINE_COMMENT_PATTERN.matcher(text);
    if (matcher.matches()) {
      return matcher.group(1).trim();
    }
  }
  if (element instanceof PsiDocCommentOwner) {
    PsiDocComment docComment = ((PsiDocCommentOwner)element).getDocComment();
    if (docComment != null) {
      PsiDocTag inspectionTag = docComment.findTagByName(SuppressionUtilCore.SUPPRESS_INSPECTIONS_TAG_NAME);
      if (inspectionTag != null) {
        String valueText = "";
        for (PsiElement dataElement : inspectionTag.getDataElements()) {
          valueText += dataElement.getText();
        }
        return valueText;
      }
    }
  }
  if (element instanceof PsiModifierListOwner) {
    Collection<String> suppressedIds = getInspectionIdsSuppressedInAnnotation((PsiModifierListOwner)element);
    return suppressedIds.isEmpty() ? null : StringUtil.join(suppressedIds, ",");
  }
  return null;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:28,代码来源:JavaSuppressionUtil.java

示例3: isImmutable

import com.intellij.psi.javadoc.PsiDocComment; //导入方法依赖的package包/类
public static boolean isImmutable(PsiClass aClass) {
  final PsiAnnotation annotation = AnnotationUtil.findAnnotation(aClass, IMMUTABLE);
  if (annotation != null) {
    return true;
  }
  PsiDocComment comment = aClass.getDocComment();
  return comment != null && comment.findTagByName("@Immutable") != null;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:9,代码来源:JCiPUtil.java

示例4: invoke

import com.intellij.psi.javadoc.PsiDocComment; //导入方法依赖的package包/类
@Override
public void invoke(@NotNull final Project project, @NotNull final PsiElement element) throws IncorrectOperationException {
  final PsiDocCommentOwner container = getContainer(element);
  LOG.assertTrue(container != null);
  if (!FileModificationService.getInstance().preparePsiElementForWrite(container)) return;
  if (use15Suppressions(container)) {
    final PsiModifierList modifierList = container.getModifierList();
    if (modifierList != null) {
      final PsiAnnotation annotation = modifierList.findAnnotation(JavaSuppressionUtil.SUPPRESS_INSPECTIONS_ANNOTATION_NAME);
      if (annotation != null) {
        annotation.replace(JavaPsiFacade.getInstance(project).getElementFactory().createAnnotationFromText("@" +
                                                                                                           JavaSuppressionUtil.SUPPRESS_INSPECTIONS_ANNOTATION_NAME + "(\"" +
                                                                                                           SuppressionUtil.ALL + "\")", container));
        return;
      }
    }
  }
  else {
    PsiDocComment docComment = container.getDocComment();
    if (docComment != null) {
      PsiDocTag noInspectionTag = docComment.findTagByName(SuppressionUtilCore.SUPPRESS_INSPECTIONS_TAG_NAME);
      if (noInspectionTag != null) {
        String tagText = "@" + SuppressionUtilCore.SUPPRESS_INSPECTIONS_TAG_NAME + " " + SuppressionUtil.ALL;
        noInspectionTag.replace(JavaPsiFacade.getInstance(project).getElementFactory().createDocTagFromText(tagText));
        // todo suppress
        //DaemonCodeAnalyzer.getInstance(project).restart();
        return;
      }
    }
  }

  super.invoke(project, element);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:34,代码来源:SuppressAllForClassFix.java

示例5: removeFromJavaDoc

import com.intellij.psi.javadoc.PsiDocComment; //导入方法依赖的package包/类
private void removeFromJavaDoc(PsiDocComment docComment) throws IncorrectOperationException {
  PsiDocTag tag = docComment.findTagByName(SuppressionUtilCore.SUPPRESS_INSPECTIONS_TAG_NAME);
  if (tag == null) return;
  String newText = removeFromElementText(tag.getDataElements());
  if (newText != null && newText.isEmpty()) {
    tag.delete();
  }
  else if (newText != null) {
    newText = "@" + SuppressionUtilCore.SUPPRESS_INSPECTIONS_TAG_NAME + " " + newText;
    PsiDocTag newTag = JavaPsiFacade.getInstance(tag.getProject()).getElementFactory().createDocTagFromText(newText);
    tag.replace(newTag);
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:14,代码来源:RemoveSuppressWarningAction.java

示例6: isConfigMethod

import com.intellij.psi.javadoc.PsiDocComment; //导入方法依赖的package包/类
private static boolean isConfigMethod(PsiMethod method, String[] configAnnotationsFqn) {
  for (String fqn : configAnnotationsFqn) {
    if (AnnotationUtil.isAnnotated(method, fqn, false)) return true;
  }

  if (hasDocTagsSupport) {
    final PsiDocComment comment = method.getDocComment();
    if (comment != null) {
      for (String javadocTag : CONFIG_JAVADOC_TAGS) {
        if (comment.findTagByName(javadocTag) != null) return true;
      }
    }
  }
  return false;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:16,代码来源:TestNGUtil.java

示例7: getTextJavaDoc

import com.intellij.psi.javadoc.PsiDocComment; //导入方法依赖的package包/类
private static PsiDocTag getTextJavaDoc(@NotNull final PsiDocCommentOwner element) {
  final PsiDocComment docComment = element.getDocComment();
  if (docComment != null) {
    return docComment.findTagByName("testng.test");
  }
  return null;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:8,代码来源:TestNGUtil.java

示例8: hasDeprecatedComment

import com.intellij.psi.javadoc.PsiDocComment; //导入方法依赖的package包/类
private boolean hasDeprecatedComment(PsiDocCommentOwner element, boolean checkContent) {
  final PsiDocComment comment = element.getDocComment();
  if (comment == null) {
    return false;
  }
  final PsiDocTag deprecatedTag = comment.findTagByName("deprecated");
  if (deprecatedTag == null) {
    return false;
  }
  return !checkContent || deprecatedTag.getValueElement() != null;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:12,代码来源:MissingDeprecatedAnnotationInspection.java

示例9: isDeprecatedByDocTag

import com.intellij.psi.javadoc.PsiDocComment; //导入方法依赖的package包/类
public static boolean isDeprecatedByDocTag(@NotNull PsiDocCommentOwner owner) {
  PsiDocComment docComment = owner.getDocComment();
  return docComment != null && docComment.findTagByName("deprecated") != null;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:PsiImplUtil.java

示例10: alreadyHas14Suppressions

import com.intellij.psi.javadoc.PsiDocComment; //导入方法依赖的package包/类
public static boolean alreadyHas14Suppressions(@NotNull PsiDocCommentOwner commentOwner) {
  final PsiDocComment docComment = commentOwner.getDocComment();
  return docComment != null && docComment.findTagByName(SuppressionUtilCore.SUPPRESS_INSPECTIONS_TAG_NAME) != null;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:JavaSuppressionUtil.java


注:本文中的com.intellij.psi.javadoc.PsiDocComment.findTagByName方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。