Reputation: 1724
Is it possible to create an option which would create multiple files in eclipse. For Example:-
I want to create an option "create module" which would ask user to specify package name. once user has specified package name it would create following inside that package with some specified format for each
Upvotes: 0
Views: 1064
Reputation: 1043
Similar to what is asked here:
Make Custom Project template in Eclipse IDE
Typically the build system, Maven, gradle, etc. is used to create and apply templates rather than IDE, but it is usually possible to create IDE plugins that would do something similar.
Upvotes: 1