Hello All, Please review the updated fix for bug JDK-8025082.
Bug: https://bugs.openjdk.java.net/browse/JDK-8025082 Webrev : http://cr.openjdk.java.net/~psadhukhan/rajeev/8025082/webrev.01/ Regards, Rajeev Chamyal -----Original Message----- From: Alexander Scherbatiy Sent: Tuesday, August 25, 2015 2:28 PM To: Rajeev Chamyal Cc: swing-dev@openjdk.java.net Subject: Re: <Swing Dev> RFR: [JDK-8025082] The behaviour of the highlight will be lost after clicking the set button On 8/21/2015 3:10 PM, Rajeev Chamyal wrote: > Hi, > > Please review the following fix for jdk9: > > Bug:https://bugs.openjdk.java.net/browse/JDK-8025082 > > webrev: > http://cr.openjdk.java.net/~psadhukhan/rajeev/8025082/webrev.00/ > <http://cr.openjdk.java.net/%7Epsadhukhan/rajeev/8025082/webrev.00/> > > > The highlight of selected text in JTextPane/JTextArea is lost if some other > component (e.g. button clicked) gains focus. > Added a method to update the selection ownership for caret when text is > selected/unselected in the JTextPane/JTextArea. - The updateOwnsSelection() method can be shorter if use the conditional operator '?' https://docs.oracle.com/javase/specs/jls/se8/html/jls-15.html#jls-15.25 - SwingUtilities.invokeAndWait() should be used instead of invokeLater. In other case the system can suspend the EDT thread and robot will start its actions before the createUI() execution. - button.getLocationOnScreen() should be called on EDT in the test - The actionPerformed() method is not properly formatted - What is the reason to use double colons in the error messages? - System.out.println calls are not really necessary for the automated test. It also pollute the logs for SQE team when all tests are running. The only exception throwing can be left in the actionPerformed() method. - line 30 '* **/' - small formatting issue Thanks, Alexandr. > > Regards, > Rajeev Chamyal > >