Added module to strip byte order mark from UTF text files.
[meviz.git] / src / main / java / eu / svjatoslav / meviz / bomremove / BomStrippingOptions.java
diff --git a/src/main/java/eu/svjatoslav/meviz/bomremove/BomStrippingOptions.java b/src/main/java/eu/svjatoslav/meviz/bomremove/BomStrippingOptions.java
new file mode 100755 (executable)
index 0000000..a97147d
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+ * Meviz - Various tools collection to work with multimedia.
+ * Copyright (C) 2012, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of version 2 of the GNU General Public License
+ * as published by the Free Software Foundation.
+ */
+
+package eu.svjatoslav.meviz.bomremove;
+
+import java.io.File;
+import java.util.ArrayList;
+
+public class BomStrippingOptions {
+
+       public ArrayList<String> inputPatterns = new ArrayList<String>();
+
+       public boolean recursive = false;
+
+       public File targetDirectory;
+
+}