- 浏览: 54038 次
- 性别:
- 来自: 沈阳
最新评论
-
imu2008:
嗯,此方法可用。好文。mark
rcp中新建工程没有图标解决方案 -
553563608:
今天也遇到这个问题了,,,,
这个方法可以解决。。。
rcp中新建工程没有图标解决方案 -
zhaozhongwei:
这个就不清楚了,我们也是两个文件啊。我很久没搞gmf了
关于gmf copy/paste 的解决方案 -
popjxc:
我下了你的代码,发现copy paste后,原来复制的是一个n ...
关于gmf copy/paste 的解决方案 -
赤道螞蟻:
你這不是用附件的方式傳的圖片嗎? 沒有什麽新招?
用java mail发送包含图片的html
文章列表
Deadlocks in 2
minutes
Deadlocks are software bugs where
multiple threads (typically one of them being the main thread) wait indefinitely
on common synchronization primitives (locks) because their resolution is
mutually interdependent.
Thread A waits on lock L1 to be
released, but i ...
Running FindBugs from Eclipse RCP headless build is pretty much simple:
1.
Add the following target to your customTargets.xml (replace "com.yourcompany"
with your package/plug-in prefix):
classname="edu.umd.cs.findbugs.anttask.FindBugsTask">
home="${en ...
Motto:
Ninety per cent of most magic merely consists of knowing one extra
fact.
Terry Pratchett, Night Watch
Development in Eclipse keeps fascinating
me, as there are a lot of very thoroughly designed services and features
integrated to allow detailed customization – on the other ha ...
Our Eclipse-based product plugs into the platform debug support. And we have a
large number of launch shortcuts which have enablement expressions specified in
plugin.xml. And they are a huge pain in the ass to test manually. If a
particular shortcut is disabled when it should be enabled, there ...
http://www.bonitasoft.org/blog/uncategorized/release-engineer-vs-dependency-management-basing-rcp-product-and-headless-build-from-plugins-to-features/
java -jar
<eclipse-installation-path>\plugins\org.eclipse.equinox.launcher_<version><qualifier>.jar
-application org.eclipse.ant.core.antRunner -buildfile
<eclipse-workspace-path>\<project-name>\<build-xml-path>
example
java -jar C:\eclipse\plug ...
Many times when working with Eclipse RCP
I had to generate ad-hoc updatesites (usually containing some 3rd party
plug-ins). What I usually did to achieve this (with Eclipse IDE):
create new feature project
add plug-ins to the feature
create new updatesite project
add the feature t ...
I ran a query
to see all the bugs fixed in the
Eclipse Platform in 3.6; it is a long list (4309 and counting). Felipe gets
credit for the oldest bug fixed
(raised in 2001), but
in a close second is bug 4922
(raised only a day later).
This bug is about opening files in eclipse
from the ...
I wanted to drop an outlook email to my RCP application and
as always I asked google to help me. You don't find much on this, an older post
washttp://www.eclipse.org/forums/index.php?t=msg&&th=147516&goto=464661
That got me startet. The damn it didn't
work, I asked on the forum a ...
虽然以前也是committer,但是是个非常小的工程还是卵化期,代码都没放到eclipse上,现在终于成为pdt(php开发工具)的committer。加油!
The source
and output properties in build.properties control the folders to be compiled and
where to place the resulting output. The eclipse
help
briefly talks about it.
* source.<library> - lists source folders that will be compiled (e.g. source.xyz.jar=src/, src-ant/). If the li ...
- 2009-11-23 09:11
- 浏览 1117
- 评论(0)
Eclipse shows errors during a launch via
the log views in both the host and the target system and on the file system. In
addition the developer can specify the flag “-consoleLog” in the launch
configuration so see potential error messages in the console view.
Bug 284704
had
been opened as ...
- 2009-11-23 08:52
- 浏览 1507
- 评论(0)
dltk code Completion
org.eclipse.dltk.ui.text.completion.ScriptCompletionProposalComputer#computeCompletionProposals
the Language specific proposals is on top of Template proposals
if want to change the proposals' older,could store the configure the older in the preference page and
store it(f ...
As a rule of thumb, your application should try to remember the
state across sessions. So when a user hits the close button and then
opens it after few mins/days, it should present exactly in the same way
where he left. In this tip, I'm going to explain few things of how this
could be achieved.
...
- 2009-09-16 12:32
- 浏览 1175
- 评论(0)
Every Eclipse plugin developer has to deal with Shell and Window, but
sometimes doesn't understand the difference between these two. In this
tip, I'm trying to explain the basic things: Display, Shell, Window,
Dialog, Workbench, WorkbenchPart, WorkbenchSite and WorkbenchPage.
Yeah, I know, its ...
- 2009-09-16 11:35
- 浏览 1067
- 评论(0)