@@ -940,7 +940,7 @@ public String toString() {
940940 *
941941 * @param <P> the page type
942942 * @return the page contained in the current window as returned by {@link WebClient#getCurrentWindow()}
943- * @exception IOException if an IO error occurs
943+ * @throws IOException if an IO error occurs
944944 */
945945 public <P extends Page > P click () throws IOException {
946946 return click (false , false , false );
@@ -961,7 +961,7 @@ public <P extends Page> P click() throws IOException {
961961 * @param altKey {@code true} if ALT is pressed during the click
962962 * @param <P> the page type
963963 * @return the page contained in the current window as returned by {@link WebClient#getCurrentWindow()}
964- * @exception IOException if an IO error occurs
964+ * @throws IOException if an IO error occurs
965965 */
966966 public <P extends Page > P click (final boolean shiftKey , final boolean ctrlKey , final boolean altKey )
967967 throws IOException {
@@ -985,7 +985,7 @@ public <P extends Page> P click(final boolean shiftKey, final boolean ctrlKey, f
985985 * @param triggerMouseEvents if true trigger the mouse events also
986986 * @param <P> the page type
987987 * @return the page contained in the current window as returned by {@link WebClient#getCurrentWindow()}
988- * @exception IOException if an IO error occurs
988+ * @throws IOException if an IO error occurs
989989 */
990990 public <P extends Page > P click (final boolean shiftKey , final boolean ctrlKey , final boolean altKey ,
991991 final boolean triggerMouseEvents ) throws IOException {
@@ -1018,7 +1018,7 @@ protected boolean isDisabledElementAndDisabled() {
10181018 * @param disableProcessLabelAfterBubbling ignore label processing
10191019 * @param <P> the page type
10201020 * @return the page contained in the current window as returned by {@link WebClient#getCurrentWindow()}
1021- * @exception IOException if an IO error occurs
1021+ * @throws IOException if an IO error occurs
10221022 */
10231023 @ SuppressWarnings ("unchecked" )
10241024 public <P extends Page > P click (final boolean shiftKey , final boolean ctrlKey , final boolean altKey ,
@@ -1134,7 +1134,7 @@ protected DomNode getEventTargetElement() {
11341134 * @param ignoreVisibility whether to ignore visibility or not
11351135 * @param <P> the page type
11361136 * @return the page contained in the current window as returned by {@link WebClient#getCurrentWindow()}
1137- * @exception IOException if an IO error occurs
1137+ * @throws IOException if an IO error occurs
11381138 */
11391139 @ SuppressWarnings ("unchecked" )
11401140 public <P extends Page > P click (final Event event ,
@@ -1240,7 +1240,7 @@ protected ScriptResult doClickFireClickEvent(final Event event) {
12401240 *
12411241 * @param <P> the page type
12421242 * @return the page that occupies this element's window after the element has been double-clicked
1243- * @exception IOException if an IO error occurs
1243+ * @throws IOException if an IO error occurs
12441244 */
12451245 public <P extends Page > P dblClick () throws IOException {
12461246 return dblClick (false , false , false );
@@ -1258,7 +1258,7 @@ public <P extends Page> P dblClick() throws IOException {
12581258 * @param altKey {@code true} if ALT is pressed during the double click
12591259 * @param <P> the page type
12601260 * @return the page that occupies this element's window after the element has been double-clicked
1261- * @exception IOException if an IO error occurs
1261+ * @throws IOException if an IO error occurs
12621262 */
12631263 @ SuppressWarnings ("unchecked" )
12641264 public <P extends Page > P dblClick (final boolean shiftKey , final boolean ctrlKey , final boolean altKey )
0 commit comments