可见当项目有特定方面时

时间:2017-01-09 11:04:28

标签: eclipse plugins eclipse-plugin eclipse-rcp

我需要在项目资源管理器中添加一个菜单项,并且只有在项目具有特定方面时才可见。菜单项已添加,但可见性步骤无效。

我该怎么做?

plugin.xml:

<menuContribution
    locationURI="popup:myMenu?after=additions">
    <command
        commandId="someCommandID"
        label="SomeCommandLabel"
        style="push">
<visibleWhen>
  <with variable="selection">
    <iterate operator="and" ifEmpty="false">
      <test property="org.eclipse.wst.common.project.facet.core.facets" 
              value="SomeFacet" />
    </iterate>
 </with>
</visibleWhen>
    </command>
</menuContribution>

谢谢!

1 个答案:

答案 0 :(得分:1)

项目方面的正确Layout是:

test