我希望能够在我的方法中添加一条弃用消息,以便在.class
打开文件时显示弃用消息。理想情况下,此消息将用于将已编译类的用户引导至替换已弃用版本的方法。
源 Java 文件
/**
* @deprecated This is the message I want displayed in the complied code
*/
@Deprecated
public void someMethod(java.lang.String couponCode) {
this.x++;
}
编译的类文件
下面的代码是我使用Intellij 12.class
打开文件时当前显示的代码
/**
* @deprecated
*/
@java.lang.Deprecated
public void someMethod(java.lang.String couponCode) { /* compiled code */ }