
eclipse plugin
lynn_chen
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
How do I find a particular class from an Eclipse plug-in?
There are two easier approaches to adding Eclipse plug-ins to the Java search engine's index. Option 1 In Eclipse 3.5 (Galileo) or later Open the Plug-in Development Preference Page by going to W转载 2012-02-29 14:19:15 · 712 阅读 · 0 评论 -
use wizards framework
Wizard class hierarchy 开发步骤(非实现Eclipse提供的3个Wizard Extension points: 1. 继承Wizard: 构造器中初始化基本信息,可创建一个带ISelection的构造器,由调用者传入以便提供Page的初始值; 实现addPags()添加IWizardPage的实现类,同时传入ISelection; 实现pe原创 2011-10-13 15:59:05 · 589 阅读 · 0 评论 -
How to turn off the Javadoc hover
Preferences / Java / Editor / Hover 1. untick the "Combined Hover" option: no more popup. Then you would have: Shift+F2: open the external javadoc if javadoc archive or directory has been转载 2011-12-26 15:13:45 · 567 阅读 · 0 评论 -
Perspective's ratio configuration in plugin.xml
For a vertical split, the part on top gets the specified ratio of the current space and the part on bottom gets the rest. Likewise, for a horizontal split, the part at left gets the specified ratio of原创 2011-12-22 17:38:35 · 585 阅读 · 0 评论 -
The First Column in a Table Is Always Left-Aligned
Due to a restriction in Microsoft Windows, the alignment of the first column in a table cannot be changed. To create programs that are portable to other platforms, this restriction is enforced by SWT转载 2011-12-21 11:33:51 · 629 阅读 · 0 评论 -
Eclipse的trace功能测试插件的步骤
1. 在插件项目中新建一个名为.options的文件(会在启动trace后扫描出来),以‘插件id/选项=值’的形式书写测试选项。 2. 在public class Activator extends AbstractUIPlugin类中以static块的形式加原创 2011-10-18 16:56:32 · 2516 阅读 · 0 评论 -
JDT - Java element hierarchy
hierarchy Java model (IJavaModel) Java project (IJavaProject) package fragment root (IPackageFragmentRoot) package fragment (IPa原创 2011-10-17 10:30:17 · 708 阅读 · 0 评论 -
error - "eUML2 Free Edition requires 'bundle org.apache.batik.dom.svg 1.6.0' "
"eUML2" UML Diagramming Tool eUML2 Home Page: http://www.soyatec.com eUML2 is a commercial UML diagramming tool for Eclipse that suppor转载 2011-10-12 17:42:21 · 2101 阅读 · 0 评论 -
视图间通信
视图间通信的3个步骤: 1. 目标视图: 在createPartControl()中,将具体的viewer作为selectionProvider注册到selectionService的实例中。 getSite().setSelectionProvider(原创 2011-09-30 15:39:42 · 801 阅读 · 0 评论 -
toggle style menu contribution ,which is not persisted
This is the definition,Menu Contributions/Toggle Button Command. Use the RegistryToggleState has two reasons: It implements IExecutableExtension. So you can specify the default values in the plu原创 2012-06-04 20:00:28 · 901 阅读 · 0 评论