本文介绍了如何制作新的Eclipse项目模板?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用一种框架,每次我创建一个新的Java项目。我必须安排相关软件包中的文件,并参考相应的外部库。如何在新建文件夹下的新建项目对话框中创建新项目模板?

解决方案

您需要编写一个Eclipse插件,专注于新建项目向导。
关于编写Eclipse插件,它在Stack Overflow问题中涉及到 。


I am using a kind of framework where every time I make a new Java project. I have to arrange the files in the appropriate packages and reference the appropriate external JAR libraries. How do I make a new project template like in the New Project dialog under a new folder?

解决方案

You need to write an Eclipse plugin for that, and concentrate on New Project Wizard. About writing Eclipse plugins, it is covered in Stack Overflow question How to write a plugin for Eclipse?.

这篇关于如何制作新的Eclipse项目模板?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 23:03