예제 #1
0
파일: XML.java 프로젝트: Gukie/lucene-solr
 public static void escapeAttributeValue(String str, Writer out) throws IOException {
   escape(str, out, attribute_escapes);
 }
예제 #2
0
파일: XML.java 프로젝트: Gukie/lucene-solr
 public static void escapeAttributeValue(char[] chars, int start, int length, Writer out)
     throws IOException {
   escape(chars, start, length, out, attribute_escapes);
 }
예제 #3
0
파일: XML.java 프로젝트: Gukie/lucene-solr
 /**
  * *******
  *
  * @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);
 }