Eclipse PDE创建一个新项目 [英] Eclipse PDE creating a new project

查看:893
本文介绍了Eclipse PDE创建一个新项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用向导扩展从用户那里获取一些设置。之后我的插件修改一个Eclipse项目,然后它应该包含在包资源管理器。整个事情与新项目与现有项目非常相似。

I'm using the Wizard Extension to get some settings from the user. After on my plugin modifies an Eclipse project and then it should be included into the Package Explorer. The whole thing is then quite similar to "New Project → Existing Project".

但是我找不到任何解决方案或教程等如何包含Eclipse项目通过向导扩展名到我的包资源管理器。

But I can't find any solution or tutorial etc. how to include an Eclipse project to my package explorer via the wizard extension.

推荐答案

对于任何有兴趣的人, p>

For anyone who´s interested this one works for me just perfect:

IProjectDescription description = ResourcesPlugin.getWorkspace().loadProjectDescription(new Path(ProjectPath + "/.project")); 
IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(description.getName());
project.create(description, null);
project.open(null);

描述将从构建路径加载并导入工作区。之后,项目将存在但关闭,因此project.open();
这是...

The Description will be loaded from the build Path and import into the workspace. After that the project would exist but is closed so project.open(); That´s it...

编辑:这将是确保该项目尚未导入的代码。

This would be the code to make sure that the project isn´t already imported.

IProjectDescription description = ResourcesPlugin.getWorkspace().loadProjectDescription(new Path(BuildPath + "/.project")); 
IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(description.getName());
IProject[] array = ResourcesPlugin.getWorkspace().getRoot().getProjects();
for(int count = 0; count <= array.length - 1; count ++){
  if(project.equals(array[count])){
    array[count].close(null);
    array[count].delete(true, null);
  }
}
project.create(description, null);
project.open(null);

这篇关于Eclipse PDE创建一个新项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆