JDK-8253609 : Need to add missed constructor to the SwingEventMonitor
  • Type: CSR
  • Component: client-libs
  • Sub-Component: javax.accessibility
  • Priority: P4
  • Status: Closed
  • Resolution: Approved
  • Fix Versions: 16
  • Submitted: 2020-09-24
  • Updated: 2020-10-02
  • Resolved: 2020-10-02
Related Reports
CSR :  
Description
Summary
-------

Need to add a missed constructor to the SwingEventMonitor, the javadoc was added to this class w/o CSR but the actual constructor was not added.

Solution
--------

Add a constructor.

Specification
-------------

src/jdk.accessibility/share/classes/com/sun/java/accessibility/util/SwingEventMonitor.java

      */
     public class SwingEventMonitor extends AWTEventMonitor {
     
    -    /**
    -     * Constructs a {@code SwingEventMonitor}.
    -     */
    -     
    +    /**
    +     * Constructs a {@code SwingEventMonitor}.
    +     */
    +    public SwingEventMonitor() {}
    +

Comments
Moving to Approved.
02-10-2020