本文整理汇总了Java中com.intellij.psi.PsiJavaFile.getPackageStatement方法的典型用法代码示例。如果您正苦于以下问题:Java PsiJavaFile.getPackageStatement方法的具体用法?Java PsiJavaFile.getPackageStatement怎么用?Java PsiJavaFile.getPackageStatement使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.psi.PsiJavaFile
的用法示例。
在下文中一共展示了PsiJavaFile.getPackageStatement方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addAnnotationToPackageInfo
import com.intellij.psi.PsiJavaFile; //导入方法依赖的package包/类
private void addAnnotationToPackageInfo(Project project, PsiJavaFile packageInfoFile) {
if (!FileModificationService.getInstance().preparePsiElementForWrite(packageInfoFile)) {
return;
}
PsiPackageStatement packageStatement = packageInfoFile.getPackageStatement();
if (packageStatement == null) {
return;
}
PsiElementFactory factory = JavaPsiFacade.getElementFactory(project);
PsiAnnotation annotation = factory.createAnnotationFromText("@" + annotationForTypeQualifierFqn,
packageInfoFile.getContext());
PsiElement addedAnnotation = packageInfoFile.addBefore(annotation, packageStatement);
JavaCodeStyleManager.getInstance(project).shortenClassReferences(addedAnnotation);
removeRedundantAnnotationsInPackage(project, packageInfoFile.getContainingDirectory().getFiles(), annotation);
}
开发者ID:stylismo,项目名称:nullability-annotations-inspection,代码行数:19,代码来源:AddPackageInfoWithNullabilityDefaultsFix.java
示例2: hackAwayEmptyPackage
import com.intellij.psi.PsiJavaFile; //导入方法依赖的package包/类
static void hackAwayEmptyPackage(PsiJavaFile file, FileTemplate template, Map<String, Object> props) throws IncorrectOperationException
{
if(!template.isTemplateOfType(JavaFileType.INSTANCE))
{
return;
}
String packageName = (String) props.get(FileTemplate.ATTRIBUTE_PACKAGE_NAME);
if(packageName == null || packageName.length() == 0 || packageName.equals(FileTemplate.ATTRIBUTE_PACKAGE_NAME))
{
PsiPackageStatement packageStatement = file.getPackageStatement();
if(packageStatement != null)
{
packageStatement.delete();
}
}
}
示例3: getPackageStatement
import com.intellij.psi.PsiJavaFile; //导入方法依赖的package包/类
@Nullable
protected PsiElement getPackageStatement()
{
PsiJavaFile javaFile = (PsiJavaFile) getFile();
return javaFile.getPackageStatement();
}