我发现@since
标签有点令人困惑。我应该如何精确地构建它?遵循Eclipse Guide语法是:
[@since] [pre-amble] [2 part version] [post-amble]
因此,格式正确的@since
标记为:
@since A 1.0 added method m2()
在我使用Maven构建的项目中,我使用了<version>
中的pom.xml
标记。有一个版本看起来像1.2.3
。根据Eclipse指南,由于段数过多,这会被标记为无效。直觉上我会做类似的事情:
@since 1.2.3
我现在从哪里获取[pre-amble]
标记的[post-amble]
和@since
部分?