1
1
/*
2
- * Copyright (c) 2011, 2020 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2011, 2024 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
26
26
* @key headful
27
27
* @bug 4278839 8233634
28
28
* @summary Incorrect cursor movement between words at the end of line
29
- * @author Anton Nashatyrev
30
29
* @library ../../../regtesthelpers
31
30
* @build Util
32
31
* @run main bug4278839
33
32
*/
34
33
35
- import java .awt .*;
36
- import java .awt .event .*;
37
- import javax .swing .*;
34
+ import java .awt .Rectangle ;
35
+ import java .awt .Robot ;
36
+ import java .awt .event .KeyEvent ;
37
+ import java .awt .event .InputEvent ;
38
+ import javax .swing .JFrame ;
39
+ import javax .swing .JScrollPane ;
40
+ import javax .swing .JTextArea ;
41
+ import javax .swing .SwingUtilities ;
42
+ import javax .swing .UIManager ;
38
43
39
- public class bug4278839 extends JFrame {
44
+ public class bug4278839 {
40
45
41
46
private static boolean passed = true ;
42
47
private static JTextArea area ;
@@ -47,16 +52,12 @@ public static void main(String[] args) throws Exception {
47
52
try {
48
53
49
54
robo = new Robot ();
50
- robo .setAutoDelay (200 );
55
+ robo .setAutoDelay (100 );
51
56
52
- SwingUtilities .invokeAndWait (new Runnable () {
53
- @ Override
54
- public void run () {
55
- createAndShowGUI ();
56
- }
57
- });
57
+ SwingUtilities .invokeAndWait (() -> createAndShowGUI ());
58
58
59
59
robo .waitForIdle ();
60
+ robo .delay (1000 );
60
61
61
62
clickMouse ();
62
63
robo .waitForIdle ();
@@ -100,33 +101,27 @@ private static int moveCaret(boolean right) throws Exception {
100
101
101
102
final int [] result = new int [1 ];
102
103
103
- SwingUtilities .invokeAndWait (new Runnable () {
104
-
105
- @ Override
106
- public void run () {
107
- result [0 ] = area .getCaretPosition ();
108
- }
104
+ SwingUtilities .invokeAndWait (() -> {
105
+ result [0 ] = area .getCaretPosition ();
109
106
});
110
107
111
- int pos = result [0 ];
112
- return pos ;
108
+ return result [0 ];
113
109
}
114
110
115
111
private static void clickMouse () throws Exception {
116
112
final Rectangle result [] = new Rectangle [1 ];
117
113
118
- SwingUtilities .invokeAndWait (new Runnable () {
119
- @ Override
120
- public void run () {
121
- result [0 ] = new Rectangle (area .getLocationOnScreen (), area .getSize ());
122
- }
114
+ SwingUtilities .invokeAndWait (() -> {
115
+ result [0 ] = new Rectangle (area .getLocationOnScreen (), area .getSize ());
123
116
});
124
117
125
118
Rectangle rect = result [0 ];
126
119
127
120
robo .mouseMove (rect .x + rect .width / 2 , rect .y + rect .width / 2 );
128
- robo .mousePress (InputEvent .BUTTON1_MASK );
129
- robo .mouseRelease (InputEvent .BUTTON1_MASK );
121
+ robo .waitForIdle ();
122
+ robo .mousePress (InputEvent .BUTTON1_DOWN_MASK );
123
+ robo .mouseRelease (InputEvent .BUTTON1_DOWN_MASK );
124
+ robo .waitForIdle ();
130
125
}
131
126
132
127
/**
0 commit comments