8e7845d80063301925916b47796fa907b8e19396
[meviz.git] / src / main / java / eu / svjatoslav / meviz / textsplitter / TextSplittingOptions.java
1 /*
2  * Meviz - Various tools collection to work with multimedia.
3  * Copyright (C) 2012 -- 2017, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU General Public License
7  * as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.meviz.textsplitter;
11
12 import java.io.File;
13 import java.util.ArrayList;
14
15 public class TextSplittingOptions {
16
17     public final ArrayList<String> fileInputPatterns = new ArrayList<>();
18
19     public final ArrayList<String> textSplitPatterns = new ArrayList<>();
20
21     public boolean recursive = false;
22
23     public File targetDirectory;
24
25 }