Eclipse generated the Javadoc format $ {date}

Is it possible to change the way the value of $ {date} set by Eclipse when writing Javadoc? By default, I do not like it.

enter image description here

enter image description here

+4
source share
2 answers

if you want to change the date format of your eclipse, just add the following two lines to the file eclipse.ini:

-Duser.language="language code"  -Duser.region="language code"

as

-Duser.language=hi -Duser.region=Hi

I think this will help.

+2
source

This was an Eclipse error, resolved in Error 75981 . Its solution can be used with the recent Eclipse Neon.

Additional information: fooobar.com/questions/157497 / ...

As said in this post, you can change the date of the template in "Preferences-> Java-> Code Style-> Code Templates":

enter image description here

:

enter image description here

+1

Source: https://habr.com/ru/post/1608010/


All Articles