When I create new project in the aforementioned IDE, I can select Web Module and then Web Module Type (HTML5 Boilerplate, Twitter Bootstrap, Node.js).

I want to write custom IntellijIDEA Plugin to add custom Web Module Type.
I expect following user action sequence:
- User clicks
File-New project - Then selects option
Create project from scratch - Creates new
Web Module - Chooses
Custom Scratchweb module type - Specifies some preferences (as on picture above)
- Clicks
Finish
Let say, that I have java class, which receives few arguments and generates all necessary files in new project folder.
How can I create an interface for passing some arguments to my java class, which will make all the rest? As it is made for Node.js Express App.
