Updated copyright and license.
[meviz.git] / src / main / java / eu / svjatoslav / meviz / encoder / Encoder.java
index fda023e..9820f2b 100755 (executable)
@@ -1,11 +1,11 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
- * Copyright (C) 2012, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ * Copyright (C) 2012 -- 2019, 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.
- */
+ * modify it under the terms of version 3 of the GNU Lesser General Public License
+ * or later as published by the Free Software Foundation.
+*/
 
 package eu.svjatoslav.meviz.encoder;
 
@@ -19,20 +19,17 @@ import java.util.List;
 
 public class Encoder implements Module {
 
-    public FormatsRegistry encoderRegistry = new FormatsRegistry();
-
-    public EncodingOptions encodingOptions;
-
-    public EncodingPlan encodingPlan;
-
-    CommandlineHandler commandlineHandler = new CommandlineHandler();
+    private final FormatsRegistry encoderRegistry = new FormatsRegistry();
+    private final CommandlineHandler commandlineHandler = new CommandlineHandler();
+    private EncodingOptions encodingOptions;
+    private EncodingPlan encodingPlan;
 
     /**
      * Generate encoding plan
      *
      * @param sourceFile Source directory of file
      */
-    public void compileEncodingPlan(final File sourceFile) {
+    private void compileEncodingPlan(final File sourceFile) {
         if (!sourceFile.exists()) {
             System.out.println("Error: file \"" + sourceFile.getAbsolutePath()
                     + "\" does not exist.");
@@ -106,7 +103,7 @@ public class Encoder implements Module {
      * @param file single file candidate to potentially be encoded
      * @return <code>true</code> if file shall be encoded.
      */
-    public boolean fileMatchesInputPattern(final File file) {
+    private boolean fileMatchesInputPattern(final File file) {
         final String fileName = file.getName().toLowerCase();
 
         for (final String inputPattern : encodingOptions.getInputPatterns())