Fixed aspect ratio of WEBM files
[meviz.git] / src / main / java / eu / svjatoslav / meviz / textsplitter / TextSplittingOptions.java
index fb0cb99..8e7845d 100755 (executable)
@@ -1,6 +1,6 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
- * Copyright (C) 2012, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ * Copyright (C) 2012 -- 2017, 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
@@ -14,13 +14,11 @@ import java.util.ArrayList;
 
 public class TextSplittingOptions {
 
-    public ArrayList<String> inputPatterns = new ArrayList<String>();
+    public final ArrayList<String> fileInputPatterns = new ArrayList<>();
 
-    public boolean recursive = false;
-
-    public boolean testOnly = false;
+    public final ArrayList<String> textSplitPatterns = new ArrayList<>();
 
-    public String outputPattern;
+    public boolean recursive = false;
 
     public File targetDirectory;