Reputation: 800
In the IntelliJ IDEA I can create automatically a method. I write the name of the method and if it doesn't exist, the IDE prompts to create it.
I want IDEA to paste the code //TODO: write method ${nameOfMethod}
in the body, when it creates a new method automatically. How can I do that?
Upvotes: 2
Views: 806
Reputation: 800
I found a solution. The solution:
//TODO: to write the method ${METHOD_NAME}
Upvotes: 8