比如getAttributeA(),该类中有一个attributeA属性,这个属性在声明的语句上面有注释,如:
/** attributeA的注释 */
public Object attributeA;
怎么才能在自动生成getter和setter方法的时候也自动生成包含如下样式的注释呢:
/**
* Getter method for property <tt>attributeA</tt>.
* attributeA的注释
* @return property value of attributeA
*/
public Object getAttributeA()
{
return attributeA;
}
谢谢~~