Package com.intellij.navigation

Examples of com.intellij.navigation.ItemPresentation


        return annotation.getContainingFile().getName() + ": @" + annotation.getQualifiedName();
      }
    }
    else if (psiElement instanceof NavigationItem) {
      final NavigationItem navigationItem = (NavigationItem)psiElement;
      final ItemPresentation presentation = navigationItem.getPresentation();
      if (presentation != null) {
        return presentation.getPresentableText();
      }
    }
    return psiElement.toString();
  }
View Full Code Here

TOP

Related Classes of com.intellij.navigation.ItemPresentation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.