diff -r 5019e3e93a4e -r b329573c76d7 java/copy-image-resizer/src/cz/frantovo/copyImageResizer/RecursiveOptions.java --- a/java/copy-image-resizer/src/cz/frantovo/copyImageResizer/RecursiveOptions.java Sun Nov 16 23:47:28 2014 +0100 +++ b/java/copy-image-resizer/src/cz/frantovo/copyImageResizer/RecursiveOptions.java Mon Nov 17 01:17:02 2014 +0100 @@ -22,7 +22,7 @@ import java.util.Collection; /** - * + * * @author Ing. František Kučera (frantovo.cz) */ public class RecursiveOptions { @@ -40,7 +40,7 @@ */ private final Collection sizes = new ArrayList<>(); - public File getSourceDir() { + public File getInput() { return input; } @@ -48,7 +48,7 @@ this.input = input; } - public File getDestinationDir() { + public File getOutput() { return output; } @@ -87,5 +87,10 @@ public String getDirectory() { return directory; } + + @Override + public String toString() { + return width + "×" + height + " → " + directory; + } } }