我需要在项目资源管理器中添加一个菜单项,并且只有在项目具有特定方面时才可见。菜单项已添加,但可见性步骤无效。
我该怎么做?
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>
谢谢!
答案 0 :(得分:1)
项目方面的正确Layout
是:
test