Author: ggregory Date: Tue Mar 26 16:45:01 2013 New Revision: 1461219 URL: http://svn.apache.org/r1461219 Log: Javadoc.
Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java?rev=1461219&r1=1461218&r2=1461219&view=diff ============================================================================== --- commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java (original) +++ commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java Tue Mar 26 16:45:01 2013 @@ -67,6 +67,9 @@ public class CSVPrinter implements Flush /** * Outputs the line separator. + * + * @throws IOException + * If an I/O error occurs */ public void println() throws IOException { out.append(format.getRecordSeparator()); @@ -90,6 +93,8 @@ public class CSVPrinter implements Flush * * @param values * values to output. + * @throws IOException + * If an I/O error occurs */ public void printRecord(final Object... values) throws IOException { for (final Object value : values) { @@ -104,6 +109,8 @@ public class CSVPrinter implements Flush * * @param values * values to output. + * @throws IOException + * If an I/O error occurs */ public void printRecord(final Iterable<?> values) throws IOException { for (final Object value : values) { @@ -121,6 +128,8 @@ public class CSVPrinter implements Flush * * @param comment * the comment to output + * @throws IOException + * If an I/O error occurs */ public void printComment(final String comment) throws IOException { if (!format.isCommentingEnabled()) {