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

GridBagConstraints.clone() should be covariant

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Won't Fix
    • Icon: P5 P5
    • None
    • 6
    • client-libs
    • x86
    • linux

      A DESCRIPTION OF THE REQUEST :
      Currently GridBagConstraints.clone() returns Object. With covariant return types introduced in Java 5.0 it could return GridBagConstraints instead, reducing the number of casts required in application development when cloning GridBagConstraints objects.

      JUSTIFICATION :
      This enhancement is easy to implement: Add a cast, change return type, done. With little effort it's possible to make API users' lifes easier.

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      Expected: GridBagConstraints.clone() return type is GridBagConstraints.
      ACTUAL -
      Actual: GridBagConstraints.clone() return type is Object.

      ---------- BEGIN SOURCE ----------
      The following code should be compilable:

      import java.awt.GridBagConstraints;
      public class TestCaseForGBCCovariantClone {
          public static final void main(final String... args) {
              final GridBagConstraints gbc1 = new GridBagConstraints();
              final GridBagConstraints gbc2 = gbc1.clone();
          }
      }
      ---------- END SOURCE ----------

      CUSTOMER SUBMITTED WORKAROUND :
      Always cast GridBagConstraints.clone() yourself.

            dav Andrei Dmitriev (Inactive)
            ndcosta Nelson Dcosta (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: