AbstractMessageParser.java | 167 if ((i > 0) && (tokens.get(i - 1) instanceof Html)) { 168 ((Html)tokens.get(i - 1)).trimLeadingWhitespace(); 170 if ((i + 1 < tokens.size()) && (tokens.get(i + 1) instanceof Html)) { 171 ((Html)tokens.get(i + 1)).trimTrailingWhitespace(); 176 // Remove any empty html tokens. 282 addToken(new Html(text.substring(start, nextChar), buf.toString())); 657 HTML ("html"), 658 FORMAT ("format"), // subtype of HTML 668 //stringreps for HTML and FORMAT don't really matte 722 private String html; field in class:AbstractMessageParser.Html 1241 StringBuilder html = new StringBuilder(); local [all...] |