Sam_Jacob
Sam_Jacob

Reputation: 31

Eclipse Plugin : create new custom file in wizard

While creating an Eclipse custom plugin:

I have created a custom wizard to get the name of the new custom project to be created.

After creating the project, it need to be able to create a file with a custom extension, something like .PROPERTIES (the file extension should be a constant one).

The execution design is as follows:

  1. After giving the Project Name after selecting NEW-->General--> Project, a window like the following must appear

enter image description here

P.S. I have already tried the code given in the site: http://blog.cypal-solutions.com/2008/07/how-to-create-new-file-wizard.html but it was not working.

I request you to help me, seem confused regarding this.

Upvotes: 3

Views: 3244

Answers (1)

codejammer
codejammer

Reputation: 1676

here is an example for what you are looking for http://blog.eclipse-tips.com/2008/07/how-to-create-new-file-wizard.html

Upvotes: 3

Related Questions