Examples of ItemPresentation


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
Copyright © 2018 www.massapi.com. 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.