- 浏览: 168628 次
- 性别:
- 来自: 杭州
最新评论
-
Vcb:
http://osgi.jxtech.net 是目前发现最好的 ...
OSGi控制台在Eclipse插件开发中的妙用 -
zxjlwt:
学习了。http://surenpi.com
OSGi控制台在Eclipse插件开发中的妙用 -
enen1982:
这个写得相当不错,找了好久,省了我一堆事,能不能复制整个目录
Eclipse插件中如何读取插件项目下的文件 -
yhyysxqygs:
用到起了
为RCP程序添加帮助支持 -
ququsxc:
这个一定要顶
Eclipse插件中如何读取插件项目下的文件
文章列表
不知道大家有没有遇到公司需要访问外网的webservice,但公司内部有代理,必须通过代理访问。
再axis中提供了很方便的方法来设置http proxy。
我们在用axis client调用远程webservice时只要加入下面代码即可:
AxisProperties.setProperty(http.proxyHost,$your proxy host);
AxisProperties.setProperty(http.proxyPort,$proxy port);
AxisProperties.setProperty(http.proxyUser,$your ...
- 2008-07-29 13:42
- 浏览 1921
- 评论(0)
http://songzhifeng.iteye.com/blog/206927
- 2008-07-22 11:23
- 浏览 849
- 评论(0)
情况是:
1.两个插件,插件B依赖于插件A,并且使用了A中的类。
2.编译正常通过,运行时报NoClassDefineFound异常。
经过反复检查,终于发现,是因为在插件A的start方法中调用某些方法的时候遇到异常没有处理,导致插件A启动失败,于是报错。
- 2008-07-18 15:25
- 浏览 1255
- 评论(0)
1.创建一个插件测试项目;即创建一个普通的插件项目。2.添加依赖项。 添加被测试插件项目和org.junit4(或者org.junit)两个到插件依赖项里面。3.被测试项目要在runtime页里,指明导出需要被测试的包。4.写测试用例。5.run-->run as-> Junit plug-in test.参考资料:FAQ What is a PDE JUnit test?FAQ_What_is_JUnit?Eclipse: Building Commercial-Quality Plug-ins, Second Edition
- 2008-07-16 15:38
- 浏览 774
- 评论(0)
CVS Howto
From Eclipsepedia
Jump to: navigation , search
There are several ways to get the source for the Eclipse projects. Most developers are actually developing their own plug-ins and are interested in browsing the Eclipse source and using it during debugging. For this, you can either browse th ...
- 2008-07-02 11:12
- 浏览 2962
- 评论(1)
1.首先要有一个功能部件项目
,并且设置其ID与插件项目相同 或者
设置其Branding plug-in为为你的plugin。
2.插件项目
下,必须有about.ini文件。具体内容可以参考:http://help.eclipse.org/help33/topic/org.eclipse.platform.doc.isv/guide/product_configfeature.htm?resultof=%22%61%62%6f%75%74%2e%69%6e%69%22%20
.
- 2008-06-16 21:05
- 浏览 1447
- 评论(0)
I get a DanglingHREFException: e.g.,
"org.eclipse.emf.ecore.xmi.DanglingHREFException: The object
'com.example.Foo@2f5dda ()' is not contained in a resource." What do I
need to do?
All objects need to be contained by a resource in order to be
serialized. That implies that for EObject x to ...
- 2008-06-11 17:27
- 浏览 2882
- 评论(0)
GMF Constraints
From Eclipsepedia
Jump to: navigation
, search
Contents
[hide
]
1
Expression Support
1.1
OCL
1.2
regexp
1.3
nregexp
1.4
Java
2
Audits
2.1
DomainElementTarget
2.2
NotationElementTarget
- 2008-06-06 16:35
- 浏览 1537
- 评论(0)
Object Constraint Language
OMG Available Specification
Version 2.0
formal/06-05-01
- 2008-06-06 13:23
- 浏览 1023
- 评论(0)
转自EclipseFAQ
Since 3.3 you can use the new EFS support to open an text editor on a file store that's backed by any kind of EFS using IDE.openEditorOnFileStore(page, fileStore).
Most editors will accept as input either an IFileEditorInput or an IStorageEditorInput. The former can be used only for ope ...
- 2008-06-05 21:17
- 浏览 1386
- 评论(1)
GMF Labels
From Eclipsepedia
Jump to: navigation, search
Labels represent pieces of text possibly associated with icons on diagram surface. Text may be edited using inplace facility. There are many possibilities to construct labels but all of them are grouped in four usecases:
1. "feature base ...
- 2008-06-05 21:14
- 浏览 1303
- 评论(0)
-vmargs -Xms128M -Xmx512M -XX:PermSize=64M -XX:MaxPermSize=128M 这里有几个问题:1. 各个参数的含义什么?2. 为什么有的机器我将-Xmx和-XX:MaxPermSize都设置为512M之后Eclipse可以启动,而有些机器无法启动?3. 为何将上面的参数写入到eclipse.ini文件Eclipse没有执行对应的设置?下面我们一一进行回答1. 各个参数的含义什么?参数中-vmargs的意思是设置JVM参数,所以后面的其实都是JVM的参数了,我们首先了解一下JVM内存管理的机制,然后再解释每个参数代表的含义。堆(Heap)和非堆(N ...
- 2008-06-05 21:12
- 浏览 2086
- 评论(0)
1.为不对应模型的链接添加标签的方式。
在gmfGraph里: a.首先新建一个Figure descriptor(取名ConnectionLabelFigure),并添加一个child label,设置其默认Text。 b.新建一个DiagramLabel(取名ConnectionDiagramLabel);在这个节点下,可以添加AlignmentFacet和LabelOffsetFacet控制Label和Link的相对位置。在gmfMap里: c.找到原来定义的LinkMaping节点,在下面新建一个Desing Label Maping,选择b步骤中定义的DiagramLabe ...
- 2008-06-05 21:07
- 浏览 1307
- 评论(0)
原文地址:http://wiki.eclipse.org/GMF_Labels
Labels represent pieces of text possibly associated with icons on diagram surface. Text may be edited using inplace facility. There are many possibilities to construct labels but all of them are grouped in four usecases:
1. "feature based label"
...
- 2008-06-05 20:56
- 浏览 618
- 评论(0)
最近一直遇到这个问题,所以比较郁闷,仔细看了下错误提示,然后做了一些尝试,发现主要原因是添加了一些扩展后,在运行环境里面没有添加相应的插件所致。
先说下出现这个问题的环境:
整个项目是一个主插件(RCP),几个提供具体功能的插件(普通插件) 。(不是这种情况的,比如单一的RCP应该不会出现这个错误)
插件运行方式,需要一下把前面说的多个插件一起运行起来,有两种方式:
1、以feature的方式组织,以product的方式运行。
2、
新建一个运行配置,在Main选项卡中选择运行方式为run an Application,然后在plugins选项卡中选择chose
plugins and fr ...
- 2008-05-08 20:47
- 浏览 13378
- 评论(1)