* underlying writer.
*
* @param b The <code>boolean</code> to be printed
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void print(boolean b) throws IOException;
* underlying writer.
*
* @param c The <code>char</code> to be printed
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void print(char c) throws IOException;
*
* @param i The <code>int</code> to be printed
* @see java.lang.Integer#toString(int)
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void print(int i) throws IOException;
*
* @param l The <code>long</code> to be printed
* @see java.lang.Long#toString(long)
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void print(long l) throws IOException;
*
* @param f The <code>float</code> to be printed
* @see java.lang.Float#toString(float)
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void print(float f) throws IOException;
*
* @param d The <code>double</code> to be printed
* @see java.lang.Double#toString(double)
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void print(double d) throws IOException;
* @param s The array of chars to be printed
*
* @throws NullPointerException If <code>s</code> is <code>null</code>
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void print(char s[]) throws IOException;
* to the underlying writer.
*
* @param s The <code>String</code> to be printed
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void print(String s) throws IOException;
*
* @param obj The <code>Object</code> to be printed
* @see java.lang.Object#toString()
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void print(Object obj) throws IOException;
* line separator string is defined by the system property
* <code>line.separator</code>, and is not necessarily a single newline
* character (<code>'\n'</code>).
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void println() throws IOException;
* <code>{@link #println()}</code>.
*
* @param x the boolean to write
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void println(boolean x) throws IOException;
* #println()}</code>.
*
* @param x the char to write
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void println(char x) throws IOException;
* #println()}</code>.
*
* @param x the int to write
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void println(int x) throws IOException;
* <code>{@link #println()}</code>.
*
* @param x the long to write
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void println(long x) throws IOException;
* <code>{@link #println()}</code>.
*
* @param x the float to write
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void println(float x) throws IOException;
* #print(double)}</code> and then <code>{@link #println()}</code>.
*
* @param x the double to write
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void println(double x) throws IOException;
* <code>println()</code>.
*
* @param x the char[] to write
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void println(char x[]) throws IOException;
* <code>{@link #println()}</code>.
*
* @param x the String to write
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void println(String x) throws IOException;
* <code>{@link #println()}</code>.
*
* @param x the Object to write
- * @throws java.io.IOException If an error occured while writing
+ * @throws java.io.IOException If an error occurred while writing
*/
abstract public void println(Object x) throws IOException;