Add accessor for out ivar.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1560384 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2014-01-22 15:27:35 +00:00
parent 58233665d0
commit e3ffcc5cd7

View File

@ -415,4 +415,13 @@ public final class CSVPrinter implements Flushable, Closeable {
println();
}
}
/**
* Gets the target Appendable.
*
* @return the target Appendable.
*/
public Appendable getOut() {
return this.out;
}
}