在我的eclispe rcp应用程序中,我添加了一个包浏览器,添加了org.eclipse.jdt.ui
当我使用我的rcp-app时,当我通过“新建项目向导”创建一个新项目来添加“常规项目”时,项目会被正确创建,但不会加载包浏览器视图中的相应图标。 / p>
我必须在我的应用程序中添加什么插件才能正确查看所有(平台)图标?
非常感谢
答案 0 :(得分:1)
您应该使用Project Explorer而不是Package Explorer。 Package Explorer是特定于Java的,Project Explorer可以执行Java和其他所有操作。
以下是一些更多信息:http://help.eclipse.org/indigo/topic/org.eclipse.platform.doc.isv/guide/cnf.htm
答案 1 :(得分:1)
这是Eclipse RCP应用程序中的已知问题。
https://bugs.eclipse.org/bugs/show_bug.cgi?id=234252
解决方法是向ApplicationWorkbenchAdvisor.java添加一些代码
以下是RCP中有关此问题的更多文档
http://help.eclipse.org/ganymede/topic/org.eclipse.platform.doc.isv/guide/cnf_rcp.htm
在这个代码示例中,我添加了Project Explorer和Problems View的图像。
以下是我必须添加到初始化方法中的内容......
public void initialize(IWorkbenchConfigurer configurer) {
super.initialize(configurer);
// here's some of my code that does some typical RCP configuration
configurer.setSaveAndRestore(true);
PlatformUI.getPreferenceStore().setValue(
IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS, false);
// here is the work around code
/*
* This is a hack to get Project tree icons to show up in the Project Explorer.
* It is descriped in the Eclipse Help Documents here.
*
* http://help.eclipse.org/ganymede/topic/org.eclipse.platform.doc.isv/guide/cnf_rcp.htm
*
*/
IDE.registerAdapters();
final String ICONS_PATH = "icons/full/";
Bundle ideBundle = Platform.getBundle(IDEWorkbenchPlugin.IDE_WORKBENCH);
declareWorkbenchImage(
configurer,
ideBundle,
IDE.SharedImages.IMG_OBJ_PROJECT,
ICONS_PATH + "obj16/prj_obj.gif",
true);
declareWorkbenchImage(
configurer,
ideBundle,
IDE.SharedImages.IMG_OBJ_PROJECT_CLOSED,
ICONS_PATH + "obj16/cprj_obj.gif",
true);
declareWorkbenchImage(
configurer,
ideBundle,
IDEInternalWorkbenchImages.IMG_ETOOL_PROBLEMS_VIEW,
ICONS_PATH + "eview16/problems_view.gif",
true);
declareWorkbenchImage(
configurer,
ideBundle,
IDEInternalWorkbenchImages.IMG_ETOOL_PROBLEMS_VIEW_ERROR,
ICONS_PATH + "eview16/problems_view_error.gif",
true);
declareWorkbenchImage(
configurer,
ideBundle,
IDEInternalWorkbenchImages.IMG_ETOOL_PROBLEMS_VIEW_WARNING,
ICONS_PATH + "eview16/problems_view_warning.gif",
true);
declareWorkbenchImage(
configurer,
ideBundle,
IDEInternalWorkbenchImages.IMG_OBJS_ERROR_PATH,
ICONS_PATH + "obj16/error_tsk.gif",
true);
declareWorkbenchImage(
configurer,
ideBundle,
IDEInternalWorkbenchImages.IMG_OBJS_WARNING_PATH,
ICONS_PATH + "obj16/warn_tsk.gif",
true);
/*
* End of hack in this method...
*/
}
private void declareWorkbenchImage(IWorkbenchConfigurer configurer_p, Bundle ideBundle, String symbolicName, String path, boolean shared)
{
URL url = ideBundle.getEntry(path);
ImageDescriptor desc = ImageDescriptor.createFromURL(url);
configurer_p.declareImage(symbolicName, desc, shared);
}
希望这有帮助。
谢谢!
答案 2 :(得分:0)
您必须手动在WorkbenchAdvisor#initialize(IWorkbenchConfigurer)方法中注册一些适配器。
调用此方法(您将在bundle org.eclipse.ui.ide.application
org.eclipse.ui.ide.IDE.registerAdapters();