在 RCP 应用程序中,我想创建一个 Common Navigator Framework 视图,从本地文件系统上的资源开始。
我已经在一个包含org.eclipse.ui.ide插件的项目中做到了这一点。但是,这会创建一个过于复杂且不适合此应用程序的 UI。(例如,它添加了大约 20 个首选项面板,其中一些与构建和版本控制相关。)
所以现在我试图在没有 ~.ide 插件的情况下做到这一点——并且没有依赖它的org.eclipse.ui.navigator.resources插件。
在 RCP 应用程序中,我已经成功地使用下面的代码创建了一个新的工作区项目(我认为),在一个带有 ~navigator.viewer 扩展的插件中,如下所示。但是 CNF 视图中什么也没有出现。
问题:
- 由于我排除了org.eclipse.ui.navigator.resources插件,是否需要定义自己的内容提供者?
- org.eclipse.ui.navigator.resources插件中的类 ResourceExtensionContentProvider 是用来实现内容绑定org.eclipse.ui.navigator.resourceContent的吗?
plugin.xml 摘录
<extension
point="org.eclipse.ui.navigator.viewer">
<viewerActionBinding
viewerId="com.mycompany.app.gen.workspace">
<includes>
<actionExtension pattern="org.eclipse.ui.navigator.resources.*" />
</includes>
</viewerActionBinding>
<viewerContentBinding
viewerId="com.dnastar.app.gen.workspace">
<includes>
<contentExtension pattern="org.eclipse.ui.navigator.resourceContent" />
<contentExtension pattern="org.eclipse.ui.navigator.resources.filters.*"/>
<contentExtension pattern="org.eclipse.ui.navigator.resources.linkHelper"/>
<contentExtension pattern="org.eclipse.ui.navigator.resources.workingSets"/>
</includes>
</viewerContentBinding>
</extension>
用于创建新项目的代码(为了完整性而包含在内):
Path path = new Path( sPath );
File filePath = new File( sPath );
String fileBaseName = filePath.getName();
String projectName = fileBaseName; // For now
IWorkspace workspace = ResourcesPlugin.getWorkspace();
IProjectDescription projDescr = workspace.newProjectDescription( projectName );
projDescr.setLocation( path );
IWorkspaceRoot root = workspace.getRoot();
IProject project = root.getProject( projectName );
try {
project.create( projDescr, null );
if ( ! project.isOpen() ) {
project.open( null );
}
} catch (CoreException e) {
MessageDialog.openError( Display.getCurrent().getActiveShell(),
"New Project Error", "Could not create new project." + "\n[" + e + "]");
}