Honor parameter prefixes
Brought to you by:
mkesting
Eclipse supports prefixes/suffixes for fields, parameters etc (Preferences/Java/Code Style). I have to adhere to a code-convention that requests the prefix 'arg' on Parameters, e.g. public void foo (Date argWhen). Jautodoc generates
/**
* Foo.
*
* @param argWhen the arg when
*/
public void foo(Date argWhen) ;
It would be nice if jautodoc would look athe the configured prefix(es) and remove them in the generated comment to get
/**
* Foo.
*
* @param argWhen the when
*/
public void foo(Date argWhen) ;
Implemented in 1.8
Works fine, thanks!