Details
-
CSR
-
Resolution: Approved
-
P4
-
None
-
source
-
minimal
-
Java API
-
JDK
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() {}
+
Attachments
Issue Links
- csr of
-
JDK-8253606 Need to add missed constructor to the SwingEventMonitor
- Resolved