1 28 29 package org.jibx.runtime; 30 31 import java.io.IOException ; 32 import java.io.Writer ; 33 34 42 43 public interface ICharacterEscaper 44 { 45 53 54 public void writeAttribute(String text, Writer writer) throws IOException ; 55 56 63 64 public void writeContent(String text, Writer writer) throws IOException ; 65 66 75 76 public void writeCData(String text, Writer writer) throws IOException ; 77 } | Popular Tags |