java/copy-image-resizer/src/cz/frantovo/copyImageResizer/cli/CLIStarter.java
author František Kučera <franta-hg@frantovo.cz>
Sun, 16 Nov 2014 21:59:13 +0100
changeset 4 f3b4caf1d05d
parent 3 java/copy-image-resizer/src/cz/frantovo/copyImageResizer/CLIStarter.java@e417b37e6c08
child 5 5019e3e93a4e
permissions -rw-r--r--
move to java package: cli
     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.cli;
    19 
    20 /**
    21  *
    22  * @author Ing. František Kučera (frantovo.cz)
    23  */
    24 public class CLIStarter {
    25 
    26 	/**
    27 	 * @param args the command line arguments
    28 	 */
    29 	public static void main(String[] args) {
    30 		// TODO code application logic here
    31 		System.out.println("TODO");
    32 	}
    33 	
    34 }