Community
Participate
Working Groups
/**
* Transforms the HTML text from the reader to formatted text.
*
* @param reader
* the reader
* @param presentation
@Override
protected String computeSubstitution(int c) throws IOException {
if (c == '<')
if (c == -1) {
return null;
} else if (c == '<')
return processHTMLTag();
else if (fIgnore)
return EMPTY_STRING;