
Java开发笔记
iteye_12502
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
错误The activator * Activator for bundle * is invalid
RCp开发中遇到该错误解决办法: ok, after talking to paul webster on IRC, I found the solution, which was that on the build tab, at the top, you have two sections under “runtime configuration”, on the left, you hav...原创 2009-11-26 19:25:58 · 426 阅读 · 0 评论 -
如何拷贝一个现有插件
File > Import Select Plugin Development and Plugins and Fragments wizard, and press Next On the right you can see EVERYTHING in the uDig SDK Select a plugin that is similar to what you want t...2009-09-20 05:51:23 · 206 阅读 · 0 评论 -
How should I use a Progress Monitor
在package org.eclipse.core.runtime; Always start the progress monitor and do at least 1 bit of work. For example: monitor.beginTask("Working", 4); monitor.work(1); Always finish star...2009-09-20 06:09:47 · 95 阅读 · 0 评论 -
插件安装方法
1直接复制 将plugins文件夹下的jar文件复制到eclipse下的plugins目录即可,此方法安装简单,卸载困难。 2links法 将插件解压缩到一个文件夹,例如c:\eclipse\myplugin\eclipse目录 在c:\eclipse下建立link文件夹 在link文件夹下创建myplugin.link文本文件,输入path=myplugin 重启eclipse 此...2009-09-20 06:54:00 · 109 阅读 · 0 评论 -
org.eclipse.ui.PartInitException: 无法打开编辑器,
org.eclipse.ui.PartInitException: 无法打开编辑器,编辑器标识未知错误解决: Eclipse3.2M6以后,Editor在plugin.xml里注册时,必须带icon参数,否则会出现以上错误。2009-09-21 02:02:30 · 893 阅读 · 0 评论