標籤:des style http color java os 檔案 io
org.eclipse.ui.navigator.navigatorContent 右鍵新增commonFilter
id: 唯一
name :名稱 如:*.xml resources
description:描述, 如:Hides *.xml resources
在該屬性下載增加屬性:其中的value為通配xml
<filterExpression> <and> <adapt type="org.eclipse.core.resources.IResource"> <test property="org.eclipse.core.resources.name" value="*.xml"> </test> </adapt> </and> </filterExpression>
在com.itec.rcp.navigatorContent 屬性 下的includes 中添加contentExtension
配置完成後,啟動導航視圖中並沒有載入出我們建立的工程。
需要在ApplicationWorkbenchAdvisor.java 中註冊
在最下面添加兩個方法:
/** * cnf 需要用到 */@Overridepublic IAdaptable getDefaultPageInput() {return ResourcesPlugin.getWorkspace().getRoot();}/** * cnf 需要用 */@Overridepublic void initialize(IWorkbenchConfigurer configurer) {IDE.registerAdapters();}
在此啟動機會顯示出所建立的工程。
完成上述所有的步驟,在開啟查看,建立一個xml,並沒有顯示出來,在Customer View中選擇隱藏的xml已經被選中,如果取消選中,xml檔案就會被顯示出來
源碼地址:http://pan.baidu.com/s/1sjHeoNj
轉載麻煩加上連結,謝謝合作。