如何将弹出菜单项的可见性限制为仅包含特定文件的项目?

时间:2014-01-31 01:32:08

标签: eclipse-plugin contextmenu

我希望限制我的弹出条目仅在项目有特定文件时显示 在其根目录。

我目前正在使用此代码,仅在单击项目时显示弹出条目。

<visibleWhen
 checkEnabled="false">
 <iterate
        ifEmpty="false"
        operator="or">
     <adapt
           type="org.eclipse.core.resources.IProject">
        <test
              property="ProjectSharing.test2">
        </test>
     </adapt>
  </iterate>
</visibleWhen>

如何查看特定文件?

0 个答案:

没有答案