2 * Meviz - Various tools collection to work with multimedia.
3 * Copyright (C) 2012 -- 2017, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
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.
10 package eu.svjatoslav.meviz.renamer;
13 import java.util.ArrayList;
15 public class RenamingOptions {
17 public final ArrayList<String> inputPatterns = new ArrayList<>();
19 public boolean recursive = false;
21 public boolean testOnly = false;
23 public String outputPattern;
25 public File targetDirectory;