to 退退:开发中如何让一个方法deprecated?
发表于:2007-07-04来源:作者:点击数:
标签:
这是通过
javadoc来做到的。
注意下面的@deprecated的用法
/**
* Sets the name.
* @param name The name to set
* @deprecated don''t use this method.
*/
public void setName(String name) {
this.name = name;
}
原文转自:http://www.ltesting.net