|
From: <be...@us...> - 2012-04-16 22:42:24
|
Revision: 438
http://flatpack.svn.sourceforge.net/flatpack/?rev=438&view=rev
Author: benoitx
Date: 2012-04-16 22:42:18 +0000 (Mon, 16 Apr 2012)
Log Message:
-----------
Re-org the printHeader or not depending on the way the factory is called.
Removed Paths:
-------------
trunk/flatpack/src/main/java/net/sf/flatpack/writer/DelimiterWriterOptions.java
Deleted: trunk/flatpack/src/main/java/net/sf/flatpack/writer/DelimiterWriterOptions.java
===================================================================
--- trunk/flatpack/src/main/java/net/sf/flatpack/writer/DelimiterWriterOptions.java 2012-04-13 13:48:38 UTC (rev 437)
+++ trunk/flatpack/src/main/java/net/sf/flatpack/writer/DelimiterWriterOptions.java 2012-04-16 22:42:18 UTC (rev 438)
@@ -1,44 +0,0 @@
-package net.sf.flatpack.writer;
-
-/**
- * Defines options for various DelimiterWriter behaviors
- *
- * @author Paul Zepernick
- */
-public class DelimiterWriterOptions {
-
- private boolean noColumnMappings;
-
-
-
- /**
- * Returns a DelimiterWriterOptions instance
- *
- * @return DelimiterWriterOptions
- */
- public static DelimiterWriterOptions getInstance() {
- return new DelimiterWriterOptions();
- }
-
-
-
- /**
- * @return the noColumnMappings
- */
- public boolean isNoColumnMappings() {
- return noColumnMappings;
- }
-
-
-
- /**
- * When this is set to true, the addRecordEntry(column, value) will throw an exception. You
- * must use addRecordEntry(value).
- *
- * @param noColumnMappings the noColumnMappings to set
- */
- public void setNoColumnMappings(boolean noColumnMappings) {
- this.noColumnMappings = noColumnMappings;
- }
-
-}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|