Eclipse Plugin 点滴(编辑器错误)

打开Eclipse Plugin 编辑器时报错:


原因是在plugin.xml文件中设置了contributorClass属性,但未指定类或者类不存在:

<extension 
   		point="org.eclipse.ui.editors">
   	  <editor
            class="javaxf.editors.ChinaEditor"
            contributorClass=""
            icon="icons/sample.gif"
            id="javaxf.editors.ChinaEditor"
            name="CHINA Editor">
   	  </editor>	
</extension>

修改为
<extension 
   		point="org.eclipse.ui.editors">
   	  <editor
            class="javaxf.editors.ChinaEditor"
            icon="icons/sample.gif"
            id="javaxf.editors.ChinaEditor"
            name="CHINA Editor">
   	  </editor>	
</extension>





发布了26 篇原创文章 · 获赞 11 · 访问量 5万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章