java/copy-image-resizer/src/cz/frantovo/copyImageResizer/SizeSpecification.java
author František Kučera <franta-hg@frantovo.cz>
Mon, 17 Nov 2014 23:39:40 +0100
changeset 20 4e4ad30c17d4
parent 7 8e9983260624
permissions -rw-r--r--
documentation – readme
     1 /**
     2  * copy-image-resizer
     3  * Copyright © 2014 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package cz.frantovo.copyImageResizer;
    19 
    20 /**
    21  *
    22  * @author Ing. František Kučera (frantovo.cz)
    23  */
    24 public class SizeSpecification {
    25 
    26 	private final int width;
    27 	private final int height;
    28 	private final String directory;
    29 	private final boolean resizeSmaller;
    30 
    31 	public SizeSpecification(int width, int height, String directory, boolean resizeSmaller) {
    32 		this.width = width;
    33 		this.height = height;
    34 		this.directory = directory;
    35 		this.resizeSmaller = resizeSmaller;
    36 	}
    37 
    38 	public int getWidth() {
    39 		return width;
    40 	}
    41 
    42 	public int getHeight() {
    43 		return height;
    44 	}
    45 
    46 	public String getDirectory() {
    47 		return directory;
    48 	}
    49 
    50 	public boolean isResizeSmaller() {
    51 		return resizeSmaller;
    52 	}
    53 
    54 	@Override
    55 	public String toString() {
    56 		return width + "×" + height + " → " + directory;
    57 	}
    58 }