我想通過我的插件在eclipse中添加一個屬性頁面。此屬性頁面必須僅針對本質項目啓用。我在plugin.xml中Eclipse PropertyPage啓用
<extension
point="org.eclipse.ui.propertyPages">
<page
class="com.test.me.ME"
id="com.test.me.ME"
name="ME">
<and>
<instanceof
value="org.eclipse.core.resources.IProject">
</instanceof>
<adapt
type="org.eclipse.core.resources.IResource">
<test
property="org.eclipse.core.resources.projectNature"
value="com.test.me.meprojectnature">
</test>
</adapt>
</and>
</page>
上面的代碼工作正常,在項目瀏覽器和導航視圖的項目寫下面的代碼。但是,這同樣不適用於資源管理器視圖。
那麼,如何實現特定於package explorer視圖的相同功能呢?
我應該如何告訴我正在做的檢查是用於Package Explorer視圖 – Ramg