-
Bug
-
Resolution: Won't Fix
-
P4
-
1.4.2
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2127399 | 5.0u5 | Shannon Hickey | P4 | Closed | Won't Fix |
The javadoc for javax.swing.text.EditorKit.clone() method states:
"...
If the kit cannot be cloned, null is returned.
...
"
------------------------------------------------------
This contradicts with Object.clone() contract:
"...
Returns:
a clone of this instance.
Throws:
CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned.
...
"
and CloneNotSupportedException class general contract:
"...
Applications that override the clone() method can also throw this exception to indicate that an object could not or should not be cloned.
...
"
------------------
The spec must claim that clone() either:
1. returns non-null value or
2. throws CloneNotSupportedException.
---------------------------------------------------------
###@###.### 2005-06-16 15:20:03 GMT
"...
If the kit cannot be cloned, null is returned.
...
"
------------------------------------------------------
This contradicts with Object.clone() contract:
"...
Returns:
a clone of this instance.
Throws:
CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned.
...
"
and CloneNotSupportedException class general contract:
"...
Applications that override the clone() method can also throw this exception to indicate that an object could not or should not be cloned.
...
"
------------------
The spec must claim that clone() either:
1. returns non-null value or
2. throws CloneNotSupportedException.
---------------------------------------------------------
###@###.### 2005-06-16 15:20:03 GMT
- backported by
-
JDK-2127399 EditorKit.clone() method should be complied with the Object.clone() conventions
-
- Closed
-