This implementation of <code>javaToNative</code> converts HTML-formatted text represented by a java <code>String</code> to a platform specific representation.
This implementation of <code>nativeToJava</code> converts a platform specific representation of HTML text to a java <code>String</code>.
Returns the singleton instance of the HTMLTransfer class.
This implementation of <code>javaToNative</code> converts a java <code>byte[]</code> to a platform specific representation.
This implementation of <code>nativeToJava</code> converts a platform specific representation of a byte array to a java <code>byte[]</code>.
The class <code>HTMLTransfer</code> provides a platform specific mechanism for converting text in HTML format represented as a java <code>String</code> to a platform specific representation of the data and vice versa.
<p>An example of a java <code>String</code> containing HTML text is shown below:</p>
<code><pre> String htmlData = "<p>This is a paragraph of text.</p>"; </code></pre>
@see Transfer