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

StyledString(String, AttributeSet) does not throw Exception for null attributes

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Won't Fix
    • Icon: P3 P3
    • None
    • 1.2.0
    • client-libs
    • 2d
    • generic
    • solaris_2.5

      By convention, an API must throw a null pointer exception for a null input
      parameter unless the javadoc spec declares otherwise. A styled string
      constructor with a non-null input String str and a null reference for the
      attributes parameter does not throw a NullPointerException. See the
      following test program:

         public Status ConstructorAttributes() {
            StyledString aStyledString;
            String aStringNull = null;
            AttributeSet anAttributeSetNull = null;
            AttributeSet anAttributeSet = new TextAttributeSet();
            // null string and attributes
            try {
               aStyledString = new StyledString(aStringNull, anAttributeSetNull);
               return Status.failed("failed to throw NullPointerException for constructor with null string and attribute set references");
            } catch (NullPointerException e) {
               // OKAY
            }
            // null string and non-null attributes
            try {
               aStyledString = new StyledString(aStringNull, anAttributeSet);
               return Status.failed("failed to throw NullPointerException for constructor with null string reference and non-null attribute set");
            } catch (NullPointerException e) {
               // OKAY
            }
            // non-null string and null attributes
            try {
               aStyledString = new StyledString("aString", anAttributeSetNull);
               return Status.failed("failed to throw NullPointerException for constructor with non-null string reference and null attribute set");
            } catch (NullPointerException e) {
               // OKAY
            }

            dfeldsunw Dmitry Feld (Inactive)
            sflemingsunw Steve Fleming (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: