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

java.text.Annotation doesn't override equals()

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P3 P3
    • None
    • 1.2.0
    • core-libs
    • generic
    • solaris_2.5

      Class Annotation does not implement a equals method and therefor inherits
      equals(*) from Object. StyledString.equals(*) fails for two strings
      with identical text and identical attribute names with identical attribute
      values wrapped in Annotations. TextAttributeSet is used to hold attributes.

      Test code follows:

         public Status equalsAnnotation() {
         
            StyledString aStyledString, anotherStyledString;
            AttributeSet anAttributeSet;
            AttributeSet anotherAttributeSet;
         
            // wrap same value in annotations
            anAttributeSet = new TextAttributeSet("One", new Annotation("1") );
            anotherAttributeSet = new TextAttributeSet("One", new Annotation("1") );
            aStyledString = new StyledString("A", anAttributeSet);
            anotherStyledString = new StyledString("A", anotherAttributeSet);
            if (!anotherStyledString.equals(aStyledString) ) {
               return Status.failed("equality fails for equal values wrapped in annotations");
            }

            nlindenbsunw Norbert Lindenberg (Inactive)
            sflemingsunw Steve Fleming (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: