Exemplo n.º 1
0
 public static void escapeAttributeValue(String str, Writer out) throws IOException {
   escape(str, out, attribute_escapes);
 }
Exemplo n.º 2
0
 public static void escapeAttributeValue(char[] chars, int start, int length, Writer out)
     throws IOException {
   escape(chars, start, length, out, attribute_escapes);
 }
Exemplo 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);
 }