java/sql-dk/src/info/globalcode/sql/dk/CLIStarter.java
author František Kučera <franta-hg@frantovo.cz>
Sun, 15 Dec 2013 22:44:11 +0100
branchv_0
changeset 5 26223eb63851
parent 4 f5c3350f3d78
child 13 599aad77e986
permissions -rw-r--r--
more OOP
     1 package info.globalcode.sql.dk;
     2 
     3 /**
     4  *
     5  * @author Ing. František Kučera (frantovo.cz)
     6  */
     7 public class CLIStarter {
     8 
     9 	public static void main(String[] args) {
    10 		CLIParser parser = new CLIParser();
    11 		CLIOptions options = parser.parseOptions(args);
    12 	}
    13 }