Integrated: 8332431: NullPointerException in JTable of SwingSet2

2024-05-28 Thread Prasanta Sadhukhan
On Fri, 24 May 2024 05:03:07 GMT, Prasanta Sadhukhan wrote: > Issue is observed in JTable demo in SwingSet2 whereby if we set the focus on > a table cell (or click on a table cell) and Press Ctrl+F1 (show/hide tooltip) > on a cell of JTable then NullpointerException is seen > >> Exception in

Re: RFR: 8332431: NullPointerException in JTable of SwingSet2 [v3]

2024-05-28 Thread Prasanta Sadhukhan
> Issue is observed in JTable demo in SwingSet2 whereby if we set the focus on > a table cell (or click on a table cell) and Press Ctrl+F1 (show/hide tooltip) > on a cell of JTable then NullpointerException is seen > >> Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException: >> C

Re: RFR: 8332431: NullPointerException in JTable of SwingSet2 [v2]

2024-05-28 Thread Alexander Zuev
On Tue, 28 May 2024 02:59:24 GMT, Prasanta Sadhukhan wrote: >> Issue is observed in JTable demo in SwingSet2 whereby if we set the focus on >> a table cell (or click on a table cell) and Press Ctrl+F1 (show/hide >> tooltip) on a cell of JTable then NullpointerException is seen >> >>> Exceptio

Re: RFR: 8314070: javax.print: Support IPP output-bin attribute extension [v13]

2024-05-28 Thread Alexander Scherbatiy
On Tue, 28 May 2024 07:52:54 GMT, Prasanta Sadhukhan wrote: >> The test updated to check if the OutputBin category is supported. > > I think if `isATtributeCategorySupported `returns false, we should not return > OutputBin[0] as that will cause the test to pass with message "SKip the test > as

Re: RFR: 8314070: javax.print: Support IPP output-bin attribute extension [v14]

2024-05-28 Thread Alexander Scherbatiy
On Tue, 28 May 2024 07:54:40 GMT, Prasanta Sadhukhan wrote: >> Alexander Scherbatiy has updated the pull request incrementally with four >> additional commits since the last revision: >> >> - Fix types in tests >> - Fix typos in tests >> - Check if OutputBin category supported in tests >>

Re: RFR: 8314070: javax.print: Support IPP output-bin attribute extension [v15]

2024-05-28 Thread Alexander Scherbatiy
> The fix adds new public `OutputBin` print attribute class which allow to set > a printer output bin in a `PrinterJob` class. The corresponding internal > `CustomOutputBin` class is added as well. > > - Constants used in `OutputBin` class are based on [Internet Printing > Protocol (IPP): “outp

Integrated: 8195675: Call to insertText with single character from custom Input Method ignored

2024-05-28 Thread Steven Loomis
On Tue, 20 Feb 2024 02:08:09 GMT, Steven Loomis wrote: > 8195675: Call to insertText with single character from custom Input Method > ignored This pull request has now been integrated. Changeset: b8f2ec90 Author:Steven Loomis URL: https://git.openjdk.org/jdk/commit/b8f2ec9091f9f7e5

Re: RFR: 8280990: [XWayland] XTest emulated mouse click does not bring window to front

2024-05-28 Thread Alexey Ushakov
On Tue, 28 May 2024 02:25:46 GMT, Alexander Zvegintsev wrote: > Some of the modal tests fail in X11 compatibility mode on Wayland, because a > mouse click emulated with XTEST does not not cause the windows to be > reordered. > > This is a known limitation because these click events do not lea

Re: RFR: 8314070: javax.print: Support IPP output-bin attribute extension [v14]

2024-05-28 Thread Prasanta Sadhukhan
On Mon, 27 May 2024 17:02:35 GMT, Alexander Scherbatiy wrote: >> The fix adds new public `OutputBin` print attribute class which allow to set >> a printer output bin in a `PrinterJob` class. The corresponding internal >> `CustomOutputBin` class is added as well. >> >> - Constants used in `Out

Re: RFR: 8332866: Crash in ImageIO JPEG decoding when MEM_STATS in enabled

2024-05-28 Thread Abhishek Kumar
On Fri, 24 May 2024 08:37:25 GMT, Jayathirth D V wrote: > In IJG library's jmemmgr.c file we can define MEM_STATS(by default this flag > is disabled and we don't see this issue) to enable printing of memory trace > logs when we have OOM. But if we enable it we get crash while disposing IJG > s

Re: RFR: 8314070: javax.print: Support IPP output-bin attribute extension [v13]

2024-05-28 Thread Prasanta Sadhukhan
On Mon, 27 May 2024 16:59:08 GMT, Alexander Scherbatiy wrote: >> test/jdk/javax/print/attribute/OutputBinAttributePrintDialogTest.java line >> 187: >> >>> 185: return new OutputBin[0]; >>> 186: } >>> 187: >> >> I guess before getting supported Attribute Values, we need to

Re: RFR: 8314070: javax.print: Support IPP output-bin attribute extension [v14]

2024-05-28 Thread Prasanta Sadhukhan
On Mon, 27 May 2024 17:02:35 GMT, Alexander Scherbatiy wrote: >> The fix adds new public `OutputBin` print attribute class which allow to set >> a printer output bin in a `PrinterJob` class. The corresponding internal >> `CustomOutputBin` class is added as well. >> >> - Constants used in `Out

Re: RFR: 8332431: NullPointerException in JTable of SwingSet2 [v2]

2024-05-28 Thread Abhishek Kumar
On Tue, 28 May 2024 07:04:19 GMT, Prasanta Sadhukhan wrote: >> src/java.desktop/share/classes/javax/swing/ToolTipManager.java line 271: >> >>> 269: toFind = mouseEvent.getLocationOnScreen(); >>> 270: } else { >>> 271: toFind = screenLocati

Re: RFR: 8332431: NullPointerException in JTable of SwingSet2 [v2]

2024-05-28 Thread Abhishek Kumar
On Tue, 28 May 2024 02:59:24 GMT, Prasanta Sadhukhan wrote: >> Issue is observed in JTable demo in SwingSet2 whereby if we set the focus on >> a table cell (or click on a table cell) and Press Ctrl+F1 (show/hide >> tooltip) on a cell of JTable then NullpointerException is seen >> >>> Exceptio

Re: RFR: 8332431: NullPointerException in JTable of SwingSet2 [v2]

2024-05-28 Thread Prasanta Sadhukhan
On Tue, 28 May 2024 04:53:08 GMT, Abhishek Kumar wrote: >> Prasanta Sadhukhan has updated the pull request incrementally with one >> additional commit since the last revision: >> >> Additional null check > > src/java.desktop/share/classes/javax/swing/ToolTipManager.java line 271: > >> 269: