
eclipse插件
文章平均质量分 54
dadi5200
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
自用代码 (创建向导)
package com.posture.example.navigator.wizards;import org.eclipse.swt.SWT;import org.eclipse.swt.events.SelectionAdapter;import org.eclipse.swt.events.SelectionEvent;import org.eclipse.swt.layout.Gri...2010-04-16 17:03:28 · 144 阅读 · 0 评论 -
(转)降低Eclipse RCP 项目 插件依赖度(OSGI 服务的理解)
下面这篇文章思路颇有点 osgi service 意思, 有思想的可以看看 在Talend产品中,模块之间的依赖都是给予代码直接访问,每个插件项目没有自身的使用规则。造成插件间的混乱无序依赖。参见大型RCP项目,降低插件依赖度 例如:上图中, org.talend.designer.core插件项目要依赖于如此多的其它项目。从整个系统的体系结构看,org....原创 2011-03-21 21:11:27 · 168 阅读 · 0 评论 -
(转)深入理解菜单(Menu)功能及其扩展点
源地址: http://www.ibm.com/developerworks/cn/opensource/os-cn-ecl-menuext/?S_TACT=105AGX52&S_CMP=tec-csdn 本文详细讲解了 eclipse menu 菜单功能, 实为初学者的好文章引言Eclipse 具有丰富的菜单功能,给开发人员提供了很好的用户体验。总体而言,E...原创 2011-03-21 21:01:16 · 1015 阅读 · 0 评论 -
eclipse link 方式安装插件
下面有三种安装插件的方式, 很好, 介绍的 不错http://www.iteye.com/topic/1113353原创 2011-08-31 14:57:56 · 236 阅读 · 0 评论 -
eclipse template 学习文章
最近找了一些eclipse 插件模板开发的资料,用于学习原创 2011-01-17 20:54:21 · 99 阅读 · 0 评论 -
emf 学习分析
一、model 与 Adapter 关联EMF 的 LabelProvider 为 new AdapterFactoryContentProvider(ComposedAdapterFactory adapterFactory)1. 当LabelProvider getText(Object object) 时 会调用 adapterFactory.adapt(object, I...原创 2010-12-31 09:13:11 · 267 阅读 · 0 评论 -
FilterTree 应用
今天看了下, 用了eclipse 源码构造了一个demo super(parent, style); this.setUseHashlookup(true); this.getTable().setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1)); ...原创 2010-06-10 22:47:37 · 361 阅读 · 0 评论 -
java editor 保存文件
AbstractTextEditor 1935 performSave() --> handleExceptionOnSave 4965 --> openSaveErrorDialog 5000 --> ErrorDialog 447 里...原创 2010-08-26 19:43:31 · 171 阅读 · 0 评论 -
propert test
http://dev.eclipse.org/newslists/news.eclipse.platform/msg76539.html http://dev.eclipse.org/newslists/news.eclipse.platform.rcp/msg34675.html (推荐) http://www.eclipse.org/forums/index.php?t=msg...原创 2010-08-02 20:15:45 · 238 阅读 · 0 评论 -
swt form
DependencyManagementSection 204 line 滚动面板 的demohttp://www.blogjava.net/liaojiyong/archive/2010/06/30/157093.html http://cai555.iteye.com/blog/465096 mysql 下载地址 http://downlo...原创 2010-08-01 21:30:55 · 150 阅读 · 0 评论 -
Rcp Command FrameWork (转载)
SummaryFrom beginning on the Eclipse platform was designed for extensibility. Therefore nearly every aspect of the workbench's user interface has a corresponding contribution mechanism. While the ...原创 2010-07-31 20:49:06 · 329 阅读 · 0 评论 -
Rcp key bingding (转载)
<extension id="product" point="org.eclipse.core.runtime.products"> <product application="com.aptana.ide.rcp.application" name="Aptana Studio">原创 2010-07-31 20:46:42 · 337 阅读 · 0 评论 -
GC 的使用
Control, Devices, Images1. 创建一个 或者 维持一个 GC2. drawing3 . 销毁 GCGC gc = new GC(display);gc.drawRectangle(...);gc.drawText(...);gc.drawImage(...);gc.dispose();swt 使用两维 坐标系, 以(0...原创 2010-07-26 08:53:37 · 365 阅读 · 0 评论 -
eclipse Perspectives 的理解
一, What is a Perspective? A perspective is a visual container for a set of views and editors (parts), A perspective is also like a page within a book. It exists within a window along with any numb...2010-05-03 21:57:19 · 210 阅读 · 0 评论 -
eclipse Image的使用
原文请看: http://www.eclipse.org/articles/Article-Using%20Images%20In%20Eclipse/Using%20Images%20In%20Eclipse.html 一 eclipse Image 的分类 1. org.eclipse.swt.graphics.Image, 代表一个重量级的对象,它在内存中处理数据, 它持有...2010-05-03 20:31:18 · 989 阅读 · 0 评论 -
Eclipse Common navigator
Eclipse Common navigator 的一些资料http://www.ibm.com/developerworks/cn/opensource/os-eclipse-emf/#resources http://www.ibm.com/developerworks/cn/views/opensource/libraryview.jsp?sort_by=Relevance&am...2010-04-29 16:41:59 · 197 阅读 · 0 评论 -
自用代码(透视图配置)
package com.posture.example.navigator;import org.eclipse.debug.ui.IDebugUIConstants;import org.eclipse.ui.IFolderLayout;import org.eclipse.ui.IPageLayout;import org.eclipse.ui.IPerspectiveFactory;im...2010-04-16 17:04:18 · 195 阅读 · 0 评论 -
elcipse dropin安装方式
以前安装Eclipse插件无非两种方式, 直接copy插件到features/plugins目录或者在links目录下创建链接文件. 刚刚发布的Eclipse 3.5又推出另一种新的安装途径, 更加灵活。Eclipse 3.5下有个dropins目录, 只要把插件放到该目录下就可以加载, 有几种格式可以选择。Eclipse 3.5插件安装方式 以前安装Eclipse插件...原创 2014-04-03 20:29:34 · 290 阅读 · 0 评论