Configure this writer to emit JSON that's safe for direct inclusion in HTML and XML documents. This escapes the HTML characters <, >, & and = before writing them to the stream. Without this setting, your XML/HTML encoder should replace these characters with the corres
(boolean htmlSafe)
| 206 | * corresponding escape sequences. |
| 207 | */ |
| 208 | public void setHtmlSafe(boolean htmlSafe) { |
| 209 | this.htmlSafe = htmlSafe; |
| 210 | } |
| 211 | |
| 212 | /** |
| 213 | * Returns true if this writer writes JSON that's safe for inclusion in HTML |
no outgoing calls