From ca7f62c8262662c8f58a3fa3b298623f25b55eaa Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Thu, 26 Feb 2015 23:02:35 +0100 Subject: Typos Change-Id: Ic03fb2ee6470eac6034be13908dd9ec92cf175b6 --- framework/qa/complex/XUserInputInterception/EventTest.java | 8 ++++---- .../contextMenuInterceptor/CheckContextMenuInterceptor.java | 2 +- framework/qa/complex/framework/recovery/RecoveryTest.java | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) (limited to 'framework/qa') diff --git a/framework/qa/complex/XUserInputInterception/EventTest.java b/framework/qa/complex/XUserInputInterception/EventTest.java index f337495b6718..86c0051d1f7d 100644 --- a/framework/qa/complex/XUserInputInterception/EventTest.java +++ b/framework/qa/complex/XUserInputInterception/EventTest.java @@ -454,10 +454,10 @@ public class EventTest { } } /** - * This method cklicks into the middel of a document. It uses Accessibility + * This method clicks into the middle of a document. It uses Accessibility * to get the document and query for its position and its range to calculate * the middle. This values was used for Robot Class. This - * Robot class is able to move the mouse and to cklick a mouse button + * Robot class is able to move the mouse and to click a mouse button * @see java.awt.Robot */ private void clickIntoDoc(){ @@ -484,7 +484,7 @@ public class EventTest { Robot rob = new Robot(); int x = point.X + (rect.Width / 2); int y = point.Y + (rect.Height / 2); - System.out.println("try to klick into the middle of the document"); + System.out.println("try to click into the middle of the document"); rob.mouseMove(x, y); rob.mousePress(InputEvent.BUTTON1_MASK); rob.mouseRelease(InputEvent.BUTTON1_MASK); @@ -520,7 +520,7 @@ public class EventTest { */ private interface EventTriggerType{ - /** klick the mouse into the scroll bar*/ + /** click the mouse into the scroll bar*/ int MOUSE_KLICK_INTO_DOC = 1; /** write some text into a spread sheet*/ diff --git a/framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java b/framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java index 532dc9da5cd1..916e57032def 100644 --- a/framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java +++ b/framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java @@ -298,7 +298,7 @@ public class CheckContextMenuInterceptor point = window.getLocationOnScreen(); Rectangle rect = window.getBounds(); - System.out.println("klick mouse button..."); + System.out.println("click mouse button..."); try { Robot rob = new Robot(); diff --git a/framework/qa/complex/framework/recovery/RecoveryTest.java b/framework/qa/complex/framework/recovery/RecoveryTest.java index 6bf108ca36f3..6f1640111b39 100644 --- a/framework/qa/complex/framework/recovery/RecoveryTest.java +++ b/framework/qa/complex/framework/recovery/RecoveryTest.java @@ -310,9 +310,9 @@ public class RecoveryTest extends ComplexTestCase { * office is started after a crash. It waits until the "next>>" button is enabled * and click it then to continue. * @param expectedDocumentCount the amount of documents which must be displayed in the recovery dialog - * @param recover If the documenst should be recoverd this variable must be true. If it is fasle - * the recovery process was stopped and the button cancel was klicked. - * @param cancel If the recovery is fifnished, this parameter desicdes to klick the "Next" button + * @param recover If the document should be recovered this variable must be true. If it is false + * the recovery process was stopped and the button cancel was clicked. + * @param cancel If the recovery is finished, this parameter decides to click the "Next" button * or the click cancel. If the value is true, the cancel button was clicked. */ private void handleRecoveryDialogAtRestart(int expectedDocumentCount, boolean recover, boolean cancel){ -- cgit