Package au.edu.mq.comp.junitGrading.webUI

Examples of au.edu.mq.comp.junitGrading.webUI.AutomarkHTTPServer


        {
            if(true == args[0].equalsIgnoreCase("server"))
            {
                int port = Integer.parseInt(args[1]);
                String workingDir = args[2];
                AutomarkHTTPServer sparkServe = new AutomarkHTTPServer(port, workingDir);
                sparkServe.run();
            }
            else
            {
                Log.error("dont know option -->" + args[0]);
            }
View Full Code Here


        {
            if(true == args[0].equalsIgnoreCase("server"))
            {
                int port = Integer.parseInt(args[1]);
                String workingDir = args[2];
                AutomarkHTTPServer sparkServe = new AutomarkHTTPServer(port, workingDir);
                sparkServe.run();
            }
            else
            {
                Log.error("dont know option -->" + args[0]);
            }
View Full Code Here

TOP

Related Classes of au.edu.mq.comp.junitGrading.webUI.AutomarkHTTPServer

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.