Package com.socrata.datasync.ui

Examples of com.socrata.datasync.ui.SimpleIntegrationWizard


   * mode (if arguments are given) or as a GUI (if no arguments are given).
   */
    public static void main(String[] args) throws ParseException {
        if(args.length == 0) {
            // Open GUI (default)
            new SimpleIntegrationWizard();
        } else if(args.length == 1) {
        if(args[0].equals("-?") || args[0].equals("--help")) {
                printHelp();
            } else if (args[0].equals("-v") || args[0].equals("--version")) {
                System.out.println("DataSync version " + VersionProvider.getThisVersion());
View Full Code Here

TOP

Related Classes of com.socrata.datasync.ui.SimpleIntegrationWizard

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.