Esempio n. 1
0
 public static void escapeAttributeValue(String str, Writer out) throws IOException {
   escape(str, out, attribute_escapes);
 }
Esempio n. 2
0
 public static void escapeAttributeValue(char[] chars, int start, int length, Writer out)
     throws IOException {
   escape(chars, start, length, out, attribute_escapes);
 }
Esempio n. 3
0
 /**
  * *******
  *
  * @throws IOException If there is a low-level I/O error.
  */
 public static void escapeCharData(String str, Writer out) throws IOException {
   escape(str, out, chardata_escapes);
 }