如何在 Eclipse 中更改方法签名时自动更新 Javadoc?
我正在使用Eclipse IDE进行Java项目。
我有一个问题。我的项目中有一些方法,这些方法具有javadoc注释,如下所示:
/**
* Retruns the string representation of a input stream
* @param in
* @return
* @throws IOException
*/
public static String getStringFromInputStream (InputStream in) throws IOException {
StringBuffer out = new StringBuffer();
byte[] b = new byte[4096];
for (int n; (n = in.read(b)) != -1;) {
out.append(new String(b, 0, n));
}
return out.toString();
}
现在我想知道,每当我对方法的签名进行更改时,这些更改会自动反映在javadoc中。