Eclipse GEF EMF
文章平均质量分 89
merit
这个作者很懒,什么都没留下…
展开
-
基于eclipse GEF开发Google GWT矢量图形应用(eclipse gef on gwt)
http://archive.cnblogs.com/a/2225393/ http://code.google.com/p/gwt-html5-graph/ 基于eclipse GEF开发Google GWT矢量图形应用(eclipse gef on gwt) 作者:trufun1006 来源:博客园 发布时间:2011-10-26 16:42 阅读:14 次 原文链接 ...原创 2011-12-20 15:13:57 · 92 阅读 · 0 评论 -
Eclipse GEF 创建浮动Palette
第一步:新建Editor,并继承自GraphicalEditorWithFlyoutPalette 比如:public class ActivityEditor extends GraphicalEditorWithFlyoutPalette 第二步:定义如下的静态变量 protected static final String PAL...2011-12-20 16:52:26 · 380 阅读 · 0 评论 -
如何获取Eclipse里view的id
在制作eclipse插件的时候,时常需要对已经存在的视图做一些扩展,例如在project explorer中增加一个右键菜单,或者需要获取outline中当前选中项,等等。而这些操作的前提,是获取这些视图的id,然后通过获取视图的语句获取到视图,并进行下一步操作。例如:如果是在view中: IViewPart part = getViewSite().getPage().findView("or...原创 2011-12-21 12:50:34 · 532 阅读 · 0 评论 -
Eclipse 插件之多页编辑器的实现
在GEF的开发中,多页标签编辑器是一种常见的实现,其实现主要是继承MultiPageEditorPart或者FormEditor来实现,在实现的子类中加入自定义的Editor或者page。 一、继承MultiPageEditorPart 具体步骤如下: a、自定义继承MultiPageEditorPart的CustomMultiPageEditor b、在其中调用createPage...2012-01-02 14:00:44 · 539 阅读 · 0 评论