How can I change the template for JavaDoc in IntelliJ IDEA? I want override the existing template that you get, if you type in "/**" and press "return"-key.
This is what I get currently:
/**
*
* @param parameter1
* @param parameter2
*/
And this is what I want:
/**
* @author sheldon
*
* @date 29.06.2016
*
* @param parameter1
* @param parameter2
*/
Please help!