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
franta-hg@1
     1
package info.globalcode.sql.dk;
franta-hg@1
     2
franta-hg@1
     3
/**
franta-hg@1
     4
 *
franta-hg@1
     5
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@1
     6
 */
franta-hg@1
     7
public class CLIStarter {
franta-hg@1
     8
franta-hg@1
     9
	public static void main(String[] args) {
franta-hg@5
    10
		CLIParser parser = new CLIParser();
franta-hg@5
    11
		CLIOptions options = parser.parseOptions(args);
franta-hg@4
    12
	}
franta-hg@1
    13
}