ArslanAnjum
ArslanAnjum

Reputation: 1724

multiple file creation in eclipse

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

  1. a controller named Controller
  2. a service interface named Service
  3. a serviceImplemenation named ServiceImpl
  4. a model package
  5. a dao package

Upvotes: 0

Views: 1064

Answers (1)

Jim Weaver
Jim Weaver

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

Related Questions