public class JavadocEscapeWriter
extends java.io.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.
| Constructor | Description |
|---|---|
JavadocEscapeWriter(java.io.Writer next) |
| Modifier and Type | Method | Description |
|---|---|---|
void |
write(char[] buf) |
|
void |
write(char[] buf,
int off,
int len) |
|
void |
write(int ch) |
|
void |
write(java.lang.String buf) |
|
void |
write(java.lang.String buf,
int off,
int len) |
public void write(int ch)
throws java.io.IOException
write in class java.io.FilterWriterjava.io.IOExceptionpublic void write(char[] buf,
int off,
int len)
throws java.io.IOException
write in class java.io.FilterWriterjava.io.IOExceptionpublic void write(char[] buf)
throws java.io.IOException
write in class java.io.Writerjava.io.IOExceptionpublic void write(java.lang.String buf,
int off,
int len)
throws java.io.IOException
write in class java.io.FilterWriterjava.io.IOExceptionpublic void write(java.lang.String buf)
throws java.io.IOException
write in class java.io.Writerjava.io.IOExceptionCopyright © 2017 Oracle Corporation. All rights reserved.