
Eclipse
iteye_20807
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
What are IWorkspaceRunnable, IRunnableWithProgress, and WorkspaceModifyOperation
IWorkspaceRunnable is a mechanism for batching a set of changes to the workspace so that change notification and autobuild are deferred until the entire batch completes. IRunnableWithProgress is a mec...原创 2011-12-02 14:36:51 · 363 阅读 · 0 评论 -
How do I prevent builds between multiple changes to the workspace?
Every time resources in the workspace change, a resource change notification is broadcast, and autobuild gets a chance to run. This can become very costly if you are making several changes in successi...原创 2011-12-02 14:38:28 · 124 阅读 · 0 评论 -
Eclipse各种窗口的分类
Java代码 // 取得工作台 IWorkbench workbench = PlatformUI.getWorkbench(); // 取得工作台窗口 IWorkbenchWindow window = workbench.getActiveWorkbenchWindow(); // 取得工作台页面 IWor...原创 2013-06-09 08:49:46 · 524 阅读 · 0 评论 -
On the Job: The Eclipse Jobs API
http://www.eclipse.org/articles/Article-Concurrency/jobs-api.html原创 2012-06-07 13:30:21 · 101 阅读 · 0 评论 -
How are resources created?
The workspace is manipulated using resource handles. Resource handles are lightweight pointers to a particular project, folder, or file in the workspace. You can create a resource handle without cre...原创 2012-06-07 13:35:40 · 211 阅读 · 0 评论