0
我遇到了與我自己的插件屬性頁面有關的問題。Eclipse插件:從幫助中隱藏屬性頁面 - >安裝細節 - >已安裝軟件 - >屬性
我有這個擴展我的Eclipse插件「的plugin.xml」文件:
<extension point="org.eclipse.ui.propertyPages">
<page class="com.myplugin.ProjectProperties"
id="com.myplugin.propertyPages.ProjectProperties"
name="Page Name">
<filter name="nature"
value="com.some.nature">
</filter>
</page>
</extension>
它的工作原理,如果與「com.some.nature」性質的項目,您打開屬性。
除此之外,它還在每個安裝的插件上顯示我的財產頁面Help -> Installation Details -> Installed Software -> Properties
。如何從那裏「過濾」出來?
謝謝
太謝謝你了。這正是我所期待的。 –
如果這回答你的問題,你應該通過點擊答案旁邊的勾號來「接受」它。 –