-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0
-
beta
-
sparc
-
solaris_7
Name: sdR10048 Date: 01/24/2001
The src comments java/awt/datatransfer/DataFlavor.java says:
/**
* Returns a <code>DataFlavor</code> representing plain text with Unicode
* encoding, where:
* <pre>
* representationClass = java.io.InputStream
* mimeType = "text/plain;
* charset=<platform default Unicode encoding>"
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
* </pre>
* The Win32 Sun implementations use the encoding <code>utf-16le</code>.
* The Solaris and Linux Sun implementations use the encoding
* <code>iso-10646-ucs-2</code>.
*/
public static final DataFlavor getTextPlainUnicodeFlavor() {
But generated javadoc says:
public static final DataFlavor getTextPlainUnicodeFlavor()
Returns a DataFlavor representing plain text with Unicode encoding, where:
representationClass = java.io.InputStream
mimeType = "text/plain;
charset="
^^^^^^^^^
The Win32 Sun implementations use the encoding utf-16le. The Solaris and Linux Sun implementations
use the encoding iso-10646-ucs-2.
Returns:
a DataFlavor representing plain text with Unicode encoding
===
I guess it is supposed to be < instead of "<" and > instead of ">".
======================================================================