Originally posted by Johan Nagels:
I would like to include new file templates in eclipse, so that when a developer wants to create a new file, he/she can select from several Java templates (e.g. one for DAOs, one for DTOs, ...)
Is that possible?
If you are looking at adding a new custom wizard under the java category, yes sir it is possible.
Your parent category for the new wizard should read.
parentCategory="org.eclipse.jdt.ui.java"
or you may want to create a separate parent category under java for your templates. For e.g. look at the
junit plugin
For more info on how to create new wizards look at
http://help.eclipse.org/help21/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/dialogs_wizards_newWizards.htm -Rajagopal