From: <rb...@us...> - 2018-06-30 13:13:02
|
Revision: 15422 http://sourceforge.net/p/htmlunit/code/15422 Author: rbri Date: 2018-06-30 13:12:59 +0000 (Sat, 30 Jun 2018) Log Message: ----------- fix javadoc Modified Paths: -------------- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/Window.java Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/Window.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/Window.java 2018-06-30 12:06:58 UTC (rev 15421) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/Window.java 2018-06-30 13:12:59 UTC (rev 15422) @@ -576,9 +576,11 @@ } /** - * Cancels a time-out previously set with the {@link #setTimeout(Object, int, Object)} method. + * Cancels a time-out previously set with the + * {@link #setTimeout(Context, Scriptable, Object[], Function)} method. * - * @param timeoutId identifier for the timeout to clear (returned by {@link #setTimeout(Object, int, Object)}) + * @param timeoutId identifier for the timeout to clear + * as returned by {@link #setTimeout(Context, Scriptable, Object[], Function)} */ @JsxFunction public void clearTimeout(final int timeoutId) { @@ -589,10 +591,11 @@ } /** - * Cancels the interval previously started using the {@link #setInterval(Object, int, Object)} method. + * Cancels the interval previously started using the + * {@link #setInterval(Context, Scriptable, Object[], Function)} method. * Current implementation does nothing. * @param intervalID specifies the interval to cancel as returned by the - * {@link #setInterval(Object, int, Object)} method + * {@link #setInterval(Context, Scriptable, Object[], Function)} method * @see <a href="http://msdn.microsoft.com/en-us/library/ms536353.aspx">MSDN documentation</a> */ @JsxFunction |