-
Bug
-
Resolution: Fixed
-
P3
-
6
-
None
-
b33
-
generic
-
generic
TransformAttribute is an immutable wrapper for an AffineTransform that is used as the value for the TRANSFORM TextAttribute. Two TransformAttributes should compare equal when their internal AffineTransforms are equal, but because the current implementation inherits its equals implementation from Object, this doesn't work. This causes problems when comparing two Maps that contain mappings to TransformAttributes.
Equals and hashcode should be overridden in TransformAttribute to do the right thing.
In addition, TransformAttribute uses null to provide a lightweight representation of the identity transform. Since 1.2 versions of TransformAttribute did not do this, streamed-in versions of transform attribute will contain non-null identity transforms. The cleanest way to handle this is to implement readresolve to return the unique identity TransformAttribute for this case. As the identity TransformAttribute may be used in other contexts, the identifier for it should be exported.
###@###.### 10/21/04 16:52 GMT
###@###.### 10/21/04 17:10 GMT
Equals and hashcode should be overridden in TransformAttribute to do the right thing.
In addition, TransformAttribute uses null to provide a lightweight representation of the identity transform. Since 1.2 versions of TransformAttribute did not do this, streamed-in versions of transform attribute will contain non-null identity transforms. The cleanest way to handle this is to implement readresolve to return the unique identity TransformAttribute for this case. As the identity TransformAttribute may be used in other contexts, the identifier for it should be exported.
###@###.### 10/21/04 16:52 GMT
###@###.### 10/21/04 17:10 GMT
- relates to
-
JDK-6261000 JCK1.5 api/java_awt/Font/TransformAttribute/index.html#ConstructorTesttestCase2 fails, regression
-
- Closed
-