• <legend id='bjK4Y'><style id='bjK4Y'><dir id='bjK4Y'><q id='bjK4Y'></q></dir></style></legend>

      • <bdo id='bjK4Y'></bdo><ul id='bjK4Y'></ul>
      <tfoot id='bjK4Y'></tfoot>

      1. <small id='bjK4Y'></small><noframes id='bjK4Y'>

      2. <i id='bjK4Y'><tr id='bjK4Y'><dt id='bjK4Y'><q id='bjK4Y'><span id='bjK4Y'><b id='bjK4Y'><form id='bjK4Y'><ins id='bjK4Y'></ins><ul id='bjK4Y'></ul><sub id='bjK4Y'></sub></form><legend id='bjK4Y'></legend><bdo id='bjK4Y'><pre id='bjK4Y'><center id='bjK4Y'></center></pre></bdo></b><th id='bjK4Y'></th></span></q></dt></tr></i><div id='bjK4Y'><tfoot id='bjK4Y'></tfoot><dl id='bjK4Y'><fieldset id='bjK4Y'></fieldset></dl></div>

        Eclipse PDE 创建新项目

        Eclipse PDE creating a new project(Eclipse PDE 创建新项目)

          <tbody id='oIMd5'></tbody>
        <tfoot id='oIMd5'></tfoot>

          <i id='oIMd5'><tr id='oIMd5'><dt id='oIMd5'><q id='oIMd5'><span id='oIMd5'><b id='oIMd5'><form id='oIMd5'><ins id='oIMd5'></ins><ul id='oIMd5'></ul><sub id='oIMd5'></sub></form><legend id='oIMd5'></legend><bdo id='oIMd5'><pre id='oIMd5'><center id='oIMd5'></center></pre></bdo></b><th id='oIMd5'></th></span></q></dt></tr></i><div id='oIMd5'><tfoot id='oIMd5'></tfoot><dl id='oIMd5'><fieldset id='oIMd5'></fieldset></dl></div>
          • <small id='oIMd5'></small><noframes id='oIMd5'>

              • <bdo id='oIMd5'></bdo><ul id='oIMd5'></ul>

                1. <legend id='oIMd5'><style id='oIMd5'><dir id='oIMd5'><q id='oIMd5'></q></dir></style></legend>
                  本文介绍了Eclipse PDE 创建新项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在使用向导扩展从用户那里获取一些设置.在我的插件修改了一个 Eclipse 项目之后,它应该被包含在 Package Explorer 中.整个事情与新项目→现有项目"非常相似.

                  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.

                  推荐答案

                  对于任何感兴趣的人来说,这对我来说非常完美:

                  For anyone whos 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(); Thats it...

                  这将是确保项目尚未导入的代码.

                  This would be the code to make sure that the project isnt 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 创建新项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)
                  How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)
                  Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)
                  Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)
                  How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)
                  How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)

                    <bdo id='HLTgI'></bdo><ul id='HLTgI'></ul>

                      <small id='HLTgI'></small><noframes id='HLTgI'>

                      <tfoot id='HLTgI'></tfoot>
                            <tbody id='HLTgI'></tbody>

                          • <legend id='HLTgI'><style id='HLTgI'><dir id='HLTgI'><q id='HLTgI'></q></dir></style></legend>
                            <i id='HLTgI'><tr id='HLTgI'><dt id='HLTgI'><q id='HLTgI'><span id='HLTgI'><b id='HLTgI'><form id='HLTgI'><ins id='HLTgI'></ins><ul id='HLTgI'></ul><sub id='HLTgI'></sub></form><legend id='HLTgI'></legend><bdo id='HLTgI'><pre id='HLTgI'><center id='HLTgI'></center></pre></bdo></b><th id='HLTgI'></th></span></q></dt></tr></i><div id='HLTgI'><tfoot id='HLTgI'></tfoot><dl id='HLTgI'><fieldset id='HLTgI'></fieldset></dl></div>