Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8284188

Add sealed modifier to java.awt.MultipleGradientPaint

XMLWordPrintable

    • Icon: CSR CSR
    • Resolution: Approved
    • Icon: P4 P4
    • 19
    • client-libs
    • None
    • 2d
    • source, binary
    • low
    • Hide
      If someone has circumvented package protections to subclass these, then they may no longer be able to do so. However the JDK now enforces strong encapsulation of JDK module internals, so this is not possible anyway without additional steps.

      The compatibility risk is both source and binary since as well as compile time checking of this, the VM enforces it at runtime.
      Show
      If someone has circumvented package protections to subclass these, then they may no longer be able to do so. However the JDK now enforces strong encapsulation of JDK module internals, so this is not possible anyway without additional steps. The compatibility risk is both source and binary since as well as compile time checking of this, the VM enforces it at runtime.
    • Java API
    • SE

      Summary

      Make java.awt.MultipleGradientPaint a sealed class

      Problem

      java.awt.MultipleGradientPaint has only two current sub-classes, and no others can be created by applications since there are no public or protected constructors, but this is not as clear as it could be.

      Solution

      Use the new JDK 17 sealed modifier on the MultipleGradientPaint class and enumerate the allowed extant sub-classes.

      Specification

      java.awt.MultipleGradientPaint

      -public abstract class MultipleGradientPaint implements Paint 
      +public abstract sealed class MultipleGradientPaint implements Paint
      +    permits LinearGradientPaint,
      +            RadialGradientPaint 
      

            prr Philip Race
            prr Philip Race
            Alexey Ivanov, Joe Darcy, Sergey Bylokhov
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: