Print a boolean value. The string produced by String#valueOf(boolean) is written to the JspWriter's buffer or, if no buffer is used, directly to the underlying writer. @param b The boolean to be printed @throws IOException If an error occurred while writing
(boolean b)
| 107 | * @throws IOException If an error occurred while writing |
| 108 | */ |
| 109 | public abstract void print(boolean b) throws IOException; |
| 110 | |
| 111 | /** |
| 112 | * Print a character. The character is written to the JspWriter's buffer or, if no buffer is used, directly to the |
no outgoing calls