Пример #1
0
 @Override
 public void updatePresentation(@NotNull NodePresentation presentation) {
   presentation.setPresentableIcon(nodeManager.getJavaNodesResources().jarFileIcon());
   presentation.setPresentableText(getData().getName());
 }
Пример #2
0
 @Override
 public void updatePresentation(@NotNull NodePresentation presentation) {
   presentation.setPresentableText(getData().getName());
   presentation.setPresentableIcon(nodeManager.getNodesResources().moduleFolder());
   presentation.setPresentableTextCss("font-weight:bold");
 }
Пример #3
0
 /** {@inheritDoc} */
 @Override
 public void updatePresentation(@NotNull NodePresentation presentation) {
   presentation.setPresentableText(getDisplayPackage());
   presentation.setPresentableIcon(nodeManager.getJavaNodesResources().packageItem());
 }