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


Java NullableNotNullManager.copyNotNullAnnotation方法代码示例

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


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

示例1: annotateWithNullableStuff

import com.intellij.codeInsight.NullableNotNullManager; //导入方法依赖的package包/类
private static void annotateWithNullableStuff(final PsiModifierListOwner field, final PsiModifierListOwner listOwner)
  throws IncorrectOperationException {
  final NullableNotNullManager manager = NullableNotNullManager.getInstance(field.getProject());
  final PsiAnnotation notNull = manager.copyNotNullAnnotation(field);
  if (notNull != null) {
    annotate(listOwner, notNull);
  }
  else {
    final PsiAnnotation nullable = manager.copyNullableAnnotation(field);
    if (nullable != null) {
      annotate(listOwner, nullable);
    }
  }

  final PsiModifierList modifierList = listOwner.getModifierList();
  if (modifierList.hasExplicitModifier(GrModifier.DEF)) {
    LOG.assertTrue(modifierList instanceof GrModifierList);
    if (modifierList.getAnnotations().length > 0 || ((GrModifierList)modifierList).getModifiers().length > 1) {
      ((GrModifierList)modifierList).setModifierProperty(GrModifier.DEF, false);
    }
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:23,代码来源:GroovyPropertyUtils.java

示例2: annotateWithNullableStuff

import com.intellij.codeInsight.NullableNotNullManager; //导入方法依赖的package包/类
public static void annotateWithNullableStuff(@NotNull PsiModifierListOwner field,
                                             @NotNull PsiModifierListOwner listOwner)
  throws IncorrectOperationException {
  final NullableNotNullManager manager = NullableNotNullManager.getInstance(field.getProject());
  final PsiAnnotation notNull = manager.copyNotNullAnnotation(field);
  if (notNull != null) {
    annotate(listOwner, notNull);
  }
  else {
    final PsiAnnotation nullable = manager.copyNullableAnnotation(field);
    if (nullable != null) {
      annotate(listOwner, nullable);
    }
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:16,代码来源:PropertyUtil.java

示例3: delegateMethod

import com.intellij.codeInsight.NullableNotNullManager; //导入方法依赖的package包/类
private PsiMethod delegateMethod(@NonNls String delegationTarget,
                                 PsiMethod method,
                                 PsiSubstitutor substitutor) throws IncorrectOperationException {
  substitutor = OverrideImplementUtil.correctSubstitutor(method, substitutor);
  PsiMethod methodToAdd = GenerateMembersUtil.substituteGenericMethod(method, substitutor);

  final PsiModifierList modifierList = methodToAdd.getModifierList();
  final NullableNotNullManager manager = NullableNotNullManager.getInstance(myProject);
  modifierList.setModifierProperty(PsiModifier.ABSTRACT, false);
  final PsiAnnotation nullable = manager.copyNullableAnnotation(method);
  if (nullable != null) {
    modifierList.addAfter(nullable, null);
  }
  else {
    final PsiAnnotation notNull = manager.copyNotNullAnnotation(method);
    if (notNull != null) {
      modifierList.addAfter(notNull, null);
    }
  }

  final String delegationBody = getDelegationBody(methodToAdd, delegationTarget);
  PsiCodeBlock newBody = myFactory.createCodeBlockFromText(delegationBody, method);

  PsiCodeBlock oldBody = methodToAdd.getBody();
  if (oldBody != null) {
    oldBody.replace(newBody);
  }
  else {
    methodToAdd.addBefore(newBody, null);
  }

  if (methodToAdd.getDocComment() != null) methodToAdd.getDocComment().delete();
  methodToAdd = (PsiMethod)CodeStyleManager.getInstance(myProject).reformat(methodToAdd);
  methodToAdd = (PsiMethod)JavaCodeStyleManager.getInstance(myProject).shortenClassReferences(methodToAdd);
  return methodToAdd;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:37,代码来源:InheritanceToDelegationProcessor.java


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