Eclipse neon版本之前,自动注释生成日期只能使用${date},其格式是本地默认格式,如“xxxx年xx月xx日”,如想修改需要修改plugin下org.eclipse.text的jar包。
Eclipse neon版本开始,可以使用自定义格式的日期了,其自带的说明如下:
GlobalVariables.variable.description.date=${id\:date[(format[, locale])]}
Evaluates to the current date in the specified format and locale. 'format' and 'locale' are optional parameters. 'format' is a pattern compatible with java.text.SimpleDateFormat. 'locale' is an RFC 3066 locale ID.
Examples:
${date}
${currentDate:date('yyyy-MM-dd')}
${d:date('EEEE dd MM yyyy', 'fr_CH')}