/* * Copyright 2000-2016 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. */ package com.intellij.ide.navigationToolbar; import com.intellij.analysis.AnalysisScopeBundle; import com.intellij.lang.LangBundle; import com.intellij.lang.java.JavaLanguage; import com.intellij.openapi.roots.ProjectFileIndex; import com.intellij.openapi.roots.ProjectRootManager; import com.intellij.openapi.vfs.jrt.JrtFileSystem; import com.intellij.openapi.vfs.VirtualFile; import com.intellij.psi.*; import com.intellij.psi.presentation.java.ClassPresentationUtil; import org.jetbrains.annotations.Nullable; import org.jetbrains.jps.model.java.JavaModuleSourceRootTypes; /** * @author anna * @since 04-Feb-2008 */ public class JavaNavBarExtension extends AbstractNavBarModelExtension { @Override public String getPresentableText(final Object object) { if (object instanceof PsiClass) { return ClassPresentationUtil.getNameForClass((PsiClass)object, false); } else if (object instanceof PsiPackage) { final String name = ((PsiPackage)object).getName(); return name != null ? name : AnalysisScopeBundle.message("dependencies.tree.node.default.package.abbreviation"); } else if (object instanceof PsiDirectory && JrtFileSystem.isRoot(((PsiDirectory)object).getVirtualFile())) { return LangBundle.message("jrt.node.short"); } return null; } @Override public PsiElement getParent(final PsiElement psiElement) { if (psiElement instanceof PsiPackage) { final PsiPackage parentPackage = ((PsiPackage)psiElement).getParentPackage(); if (parentPackage != null && parentPackage.getQualifiedName().length() > 0) { return parentPackage; } } return null; } @Nullable @Override public PsiElement adjustElement(final PsiElement psiElement) { final ProjectFileIndex index = ProjectRootManager.getInstance(psiElement.getProject()).getFileIndex(); final PsiFile containingFile = psiElement.getContainingFile(); if (containingFile != null) { final VirtualFile file = containingFile.getVirtualFile(); if (file != null && (index.isUnderSourceRootOfType(file, JavaModuleSourceRootTypes.SOURCES) || index.isInLibraryClasses(file) || index.isInLibrarySource(file))) { if (psiElement instanceof PsiJavaFile) { final PsiJavaFile psiJavaFile = (PsiJavaFile)psiElement; if (psiJavaFile.getViewProvider().getBaseLanguage() == JavaLanguage.INSTANCE) { final PsiClass[] psiClasses = psiJavaFile.getClasses(); if (psiClasses.length == 1) { return psiClasses[0]; } } } if (psiElement instanceof PsiClass) { return psiElement; } } return containingFile; } return psiElement; } }