Javadoc for not escaping apos
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@406082 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2bdf879815
commit
76ca3f317f
|
@ -425,8 +425,10 @@ public class StringEscapeUtils {
|
|||
* <code>&quot;bread&quot; &amp; &quot;butter&quot;</code>.
|
||||
* </p>
|
||||
*
|
||||
* <p>Supports all known HTML 4.0 entities, including funky accents.</p>
|
||||
*
|
||||
* <p>Supports all known HTML 4.0 entities, including funky accents.
|
||||
* Note that the commonly used apostrophe escape character (&apos;)
|
||||
* is not a legal entity and so is not supported). </p>
|
||||
*
|
||||
* @param str the <code>String</code> to escape, may be null
|
||||
* @return a new escaped <code>String</code>, <code>null</code> if null string input
|
||||
*
|
||||
|
@ -464,11 +466,11 @@ public class StringEscapeUtils {
|
|||
* <code>"bread" & "butter"</code>
|
||||
* <p>becomes:</p>
|
||||
* <code>&quot;bread&quot; &amp; &quot;butter&quot;</code>.
|
||||
*
|
||||
* <p>Supports all known HTML 4.0 entities, including funky accents. Note that
|
||||
* the common apostrophe escape character (&apos; is not a legal entity
|
||||
* and so is not supported. </p>
|
||||
*
|
||||
*
|
||||
* <p>Supports all known HTML 4.0 entities, including funky accents.
|
||||
* Note that the commonly used apostrophe escape character (&apos;)
|
||||
* is not a legal entity and so is not supported). </p>
|
||||
*
|
||||
* @param writer The <code>Writer</code> to write the result to. This must not be <code>null</code>.
|
||||
* @param string The <code>String</code> to escape. This may be <code>null</code>.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue