public class JavadocEscapeWriter extends FilterWriter
Writer that escapes characters that are unsafe
as Javadoc comments.
Such characters include '<' and '&'.
Note that this class doesn't escape other Unicode characters
that are typically unsafe. For example, 愛 (A kanji
that means "love") can be considered as unsafe because
javac with English Windows cannot accept this character in the
source code.
If the application needs to escape such characters as well, then
they are on their own.out| Constructor and Description |
|---|
JavadocEscapeWriter(Writer next) |
public JavadocEscapeWriter(Writer next)
public void write(int ch)
throws IOException
write in class FilterWriterIOExceptionpublic void write(char[] buf,
int off,
int len)
throws IOException
write in class FilterWriterIOExceptionpublic void write(char[] buf)
throws IOException
write in class WriterIOExceptionpublic void write(String buf, int off, int len) throws IOException
write in class FilterWriterIOExceptionpublic void write(String buf) throws IOException
write in class WriterIOExceptionCopyright © 2010–2015 MuleSoft, Inc.. All rights reserved.